123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?php
- /* For licensing terms, see /license.txt */
- require_once __DIR__.'/../inc/global.inc.php';
- // The section for the tabs
- $this_section = SECTION_COURSES;
- $sessionId = api_get_session_id();
- if (!empty($sessionId)) {
- api_not_allowed();
- }
- api_protect_course_script(true);
- if (!api_is_allowed_to_edit()) {
- api_not_allowed(true);
- }
- $action = isset($_GET['action']) ? $_GET['action'] : '';
- $id = isset($_GET['id']) ? (int) $_GET['id'] : '';
- $toolName = get_lang('Customize icons');
- switch ($action) {
- case 'delete_icon':
- $tool = CourseHome::getTool($id);
- if (empty($tool)) {
- api_not_allowed(true);
- }
- $currentUrl = api_get_self().'?'.api_get_cidreq();
- Display::addFlash(Display::return_message(get_lang('Update successful')));
- CourseHome::deleteIcon($id);
- header('Location: '.$currentUrl);
- exit;
- break;
- case 'edit_icon':
- $tool = CourseHome::getTool($id);
- if (empty($tool)) {
- api_not_allowed(true);
- }
- $interbreadcrumb[] = [
- 'url' => api_get_self().'?'.api_get_cidreq(),
- 'name' => get_lang('Customize icons'),
- ];
- $toolName = Security::remove_XSS(stripslashes($tool['name']));
- $currentUrl = api_get_self().'?action=edit_icon&id='.$id.'&'.api_get_cidreq();
- $form = new FormValidator('icon_edit', 'post', $currentUrl);
- $form->addHeader(get_lang('Edit icon'));
- $form->addHtml('<div class="col-md-7">');
- $form->addText('name', get_lang('Name'));
- $form->addText('link', get_lang('Links'));
- $allowedPictureTypes = ['jpg', 'jpeg', 'png'];
- $form->addFile('icon', get_lang('Custom icon'));
- $form->addRule(
- 'icon',
- get_lang('Only PNG, JPG or GIF images allowed').' ('.implode(',', $allowedPictureTypes).')',
- 'filetype',
- $allowedPictureTypes
- );
- $form->addSelect(
- 'target',
- get_lang('Link\'s target'),
- [
- '_self' => get_lang('Open self'),
- '_blank' => get_lang('Open blank'),
- ]
- );
- $form->addSelect(
- 'visibility',
- get_lang('Visibility'),
- [1 => get_lang('Visible'), 0 => get_lang('invisible')]
- );
- $form->addTextarea(
- 'description',
- get_lang('Description'),
- ['rows' => '3', 'cols' => '40']
- );
- $form->addButtonUpdate(get_lang('Update'));
- $form->addHtml('</div>');
- $form->addHtml('<div class="col-md-5">');
- if (isset($tool['custom_icon']) && !empty($tool['custom_icon'])) {
- $form->addLabel(
- get_lang('Current icon'),
- Display::img(
- CourseHome::getCustomWebIconPath().$tool['custom_icon']
- )
- );
- $form->addCheckBox('delete_icon', null, get_lang('Delete picture'));
- }
- $form->addHtml('</div>');
- $form->setDefaults($tool);
- $content = $form->returnForm();
- if ($form->validate()) {
- $data = $form->getSubmitValues();
- CourseHome::updateTool($id, $data);
- Display::addFlash(Display::return_message(get_lang('Update successful')));
- if (isset($data['delete_icon'])) {
- CourseHome::deleteIcon($id);
- }
- $currentUrlReturn = api_get_self().'?'.api_get_cidreq();
- header('Location: '.$currentUrlReturn);
- exit;
- }
- break;
- case 'list':
- default:
- $toolList = CourseHome::toolsIconsAction(
- api_get_course_int_id(),
- api_get_session_id()
- );
- $list = [];
- $tmp = [];
- foreach ($toolList as $tool) {
- $tmp['id'] = $tool['id'];
- $tmp['name'] = Security::remove_XSS(stripslashes($tool['name']));
- $toolIconName = 'Tool'.api_underscore_to_camel_case($tool['name']);
- $toolIconName = isset($$toolIconName) ? get_lang($toolIconName) : $tool['name'];
- $tmp['name'] = $toolIconName;
- $tmp['link'] = $tool['link'];
- if (!empty($tool['custom_icon'])) {
- $image = CourseHome::getCustomWebIconPath().$tool['custom_icon'];
- $icon = Display::img($image, $tool['name']);
- } else {
- $image = 'tool_'.(substr($tool['image'], 0, strpos($tool['image'], '.'))).'.png';
- $icon = Display::return_icon(
- $image,
- null,
- ['id' => 'tool_'.$tool['id']],
- ICON_SIZE_BIG,
- false,
- true
- );
- }
- $tmp['image'] = $icon;
- $tmp['visibility'] = $tool['visibility'];
- $delete = (!empty($tool['custom_icon'])) ? "<a class=\"btn btn-default\" onclick=\"javascript:
- if(!confirm('".addslashes(api_htmlentities(get_lang('Please confirm your choice'), ENT_QUOTES, $charset)).
- "')) return false;\" href=\"".api_get_self().'?action=delete_icon&id='.$tool['iid'].'&'.api_get_cidreq()."\">
- <i class=\"fas fa-trash-alt\"></i></a>" : "";
- $edit = '<a class="btn btn-outline-secondary btn-sm" href="'.api_get_self().'?action=edit_icon&id='.$tool['iid'].'&'.api_get_cidreq().'"><i class="fas fa-pencil-alt"></i></a>';
- $tmp['action'] = $edit.$delete;
- $list[] = $tmp;
- }
- $tpl->assign('tools', $list);
- $layout = $tpl->get_template("course_info/tools.html.twig");
- $content = $tpl->fetch($layout);
- break;
- }
- $tpl = new Template($toolName);
- $tpl->assign('content', $content);
- $tpl->display_one_col_template();
|