tools.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. require_once __DIR__.'/../inc/global.inc.php';
  4. // The section for the tabs
  5. $this_section = SECTION_COURSES;
  6. $sessionId = api_get_session_id();
  7. if (!empty($sessionId)) {
  8. api_not_allowed();
  9. }
  10. api_protect_course_script(true);
  11. if (!api_is_allowed_to_edit()) {
  12. api_not_allowed(true);
  13. }
  14. $action = isset($_GET['action']) ? $_GET['action'] : '';
  15. $id = isset($_GET['id']) ? (int) $_GET['id'] : '';
  16. $toolName = get_lang('CustomizeIcons');
  17. switch ($action) {
  18. case 'delete_icon':
  19. $tool = CourseHome::getTool($id);
  20. if (empty($tool)) {
  21. api_not_allowed(true);
  22. }
  23. $currentUrl = api_get_self().'?'.api_get_cidreq();
  24. Display::addFlash(Display::return_message(get_lang('Updated')));
  25. CourseHome::deleteIcon($id);
  26. header('Location: '.$currentUrl);
  27. exit;
  28. break;
  29. case 'edit_icon':
  30. $tool = CourseHome::getTool($id);
  31. if (empty($tool)) {
  32. api_not_allowed(true);
  33. }
  34. $interbreadcrumb[] = [
  35. 'url' => api_get_self().'?'.api_get_cidreq(),
  36. 'name' => get_lang('CustomizeIcons'),
  37. ];
  38. $toolName = Security::remove_XSS(stripslashes($tool['name']));
  39. $currentUrl = api_get_self().'?action=edit_icon&id='.$id.'&'.api_get_cidreq();
  40. $form = new FormValidator('icon_edit', 'post', $currentUrl);
  41. $form->addHeader(get_lang('EditIcon'));
  42. $form->addHtml('<div class="col-md-7">');
  43. $form->addText('name', get_lang('Name'));
  44. $form->addText('link', get_lang('Links'));
  45. $allowedPictureTypes = ['jpg', 'jpeg', 'png'];
  46. $form->addFile('icon', get_lang('CustomIcon'));
  47. $form->addRule(
  48. 'icon',
  49. get_lang('OnlyImagesAllowed').' ('.implode(',', $allowedPictureTypes).')',
  50. 'filetype',
  51. $allowedPictureTypes
  52. );
  53. $form->addSelect(
  54. 'target',
  55. get_lang('LinkTarget'),
  56. [
  57. '_self' => get_lang('LinkOpenSelf'),
  58. '_blank' => get_lang('LinkOpenBlank'),
  59. ]
  60. );
  61. $form->addSelect(
  62. 'visibility',
  63. get_lang('Visibility'),
  64. [1 => get_lang('Visible'), 0 => get_lang('Invisible')]
  65. );
  66. $form->addTextarea(
  67. 'description',
  68. get_lang('Description'),
  69. ['rows' => '3', 'cols' => '40']
  70. );
  71. $form->addButtonUpdate(get_lang('Update'));
  72. $form->addHtml('</div>');
  73. $form->addHtml('<div class="col-md-5">');
  74. if (isset($tool['custom_icon']) && !empty($tool['custom_icon'])) {
  75. $form->addLabel(
  76. get_lang('CurrentIcon'),
  77. Display::img(
  78. CourseHome::getCustomWebIconPath().$tool['custom_icon']
  79. )
  80. );
  81. $form->addCheckBox('delete_icon', null, get_lang('DeletePicture'));
  82. }
  83. $form->addHtml('</div>');
  84. $form->setDefaults($tool);
  85. $content = $form->returnForm();
  86. if ($form->validate()) {
  87. $data = $form->getSubmitValues();
  88. CourseHome::updateTool($id, $data);
  89. Display::addFlash(Display::return_message(get_lang('Updated')));
  90. if (isset($data['delete_icon'])) {
  91. CourseHome::deleteIcon($id);
  92. }
  93. $currentUrlReturn = api_get_self().'?'.api_get_cidreq();
  94. header('Location: '.$currentUrlReturn);
  95. exit;
  96. }
  97. break;
  98. case 'list':
  99. default:
  100. $toolList = CourseHome::toolsIconsAction(
  101. api_get_course_int_id(),
  102. api_get_session_id()
  103. );
  104. $iconsTools = '<div id="custom-icons">';
  105. $iconsTools .= Display::page_header(get_lang('CustomizeIcons'), null, 'h4');
  106. $iconsTools .= '<div class="row">';
  107. foreach ($toolList as $tool) {
  108. $tool['name'] = Security::remove_XSS(stripslashes($tool['name']));
  109. $toolIconName = 'Tool'.api_underscore_to_camel_case($tool['name']);
  110. $toolIconName = isset($$toolIconName) ? get_lang($toolIconName) : $tool['name'];
  111. $iconsTools .= '<div class="col-md-2">';
  112. $iconsTools .= '<div class="items-tools">';
  113. if (!empty($tool['custom_icon'])) {
  114. $image = CourseHome::getCustomWebIconPath().$tool['custom_icon'];
  115. $icon = Display::img($image, $toolIconName);
  116. } else {
  117. $image = (substr($tool['image'], 0, strpos($tool['image'], '.'))).'.png';
  118. $icon = Display::return_icon(
  119. $image,
  120. $toolIconName,
  121. ['id' => 'tool_'.$tool['id']],
  122. ICON_SIZE_BIG,
  123. false
  124. );
  125. }
  126. $delete = (!empty($tool['custom_icon'])) ? "<a class=\"btn btn-default\" onclick=\"javascript:
  127. if(!confirm('".addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES, $charset)).
  128. "')) return false;\" href=\"".api_get_self().'?action=delete_icon&id='.$tool['iid'].'&'.api_get_cidreq()."\">
  129. <em class=\"fa fa-trash-o\"></em></a>" : "";
  130. $edit = '<a class="btn btn-default" href="'.api_get_self().'?action=edit_icon&id='.$tool['iid'].'&'.api_get_cidreq().'"><em class="fa fa-pencil"></em></a>';
  131. $iconsTools .= '<div class="icon-tools">'.$icon.'</div>';
  132. $iconsTools .= '<div class="name-tools">'.$toolIconName.'</div>';
  133. $iconsTools .= '<div class="toolbar">'.$edit.$delete.'</div>';
  134. $iconsTools .= '</div>';
  135. $iconsTools .= '</div>';
  136. }
  137. $iconsTools .= '</div>';
  138. $iconsTools .= '</div>';
  139. $content = $iconsTools;
  140. break;
  141. }
  142. $tpl = new Template($toolName);
  143. $tpl->assign('content', $content);
  144. $template = $tpl->get_template('layout/layout_1_col.tpl');
  145. $tpl->display($template);