tools.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. ////require_once '../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']) ? intval($_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[] = array('url' => api_get_self().'?'.api_get_cidreq(), 'name' => get_lang('CustomizeIcons'));
  35. $toolName = Security::remove_XSS(stripslashes($tool['name']));
  36. $currentUrl = api_get_self().'?action=edit_icon&id=' . $id.'&'.api_get_cidreq();
  37. $form = new FormValidator('icon_edit', 'post', $currentUrl);
  38. $form->addHeader(get_lang('EditIcon'));
  39. $form->addHtml('<div class="col-md-7">');
  40. $form->addText('name', get_lang('Name'));
  41. $form->addText('link', get_lang('Links'));
  42. $allowed_picture_types = array ('jpg', 'jpeg', 'png');
  43. $form->addFile('icon', get_lang('CustomIcon'));
  44. $form->addRule('icon', get_lang('OnlyImagesAllowed').' ('.implode(',', $allowed_picture_types).')', 'filetype', $allowed_picture_types);
  45. $form->addSelect(
  46. 'target',
  47. get_lang('LinkTarget'),
  48. [
  49. '_self' => get_lang('LinkOpenSelf'),
  50. '_blank' => get_lang('LinkOpenBlank')
  51. ]
  52. );
  53. $form->addSelect(
  54. 'visibility',
  55. get_lang('Visibility'),
  56. array(1 => get_lang('Visible'), 0 => get_lang('Invisible'))
  57. );
  58. $form->addTextarea(
  59. 'description',
  60. get_lang('Description'),
  61. array('rows' => '3', 'cols' => '40')
  62. );
  63. $form->addButtonUpdate(get_lang('Update'));
  64. $form->addHtml('</div>');
  65. $form->addHtml('<div class="col-md-5">');
  66. if (isset($tool['custom_icon']) && !empty($tool['custom_icon'])) {
  67. $form->addLabel(
  68. get_lang('CurrentIcon'),
  69. Display::img(
  70. CourseHome::getCustomWebIconPath().$tool['custom_icon']
  71. )
  72. );
  73. $form->addCheckBox('delete_icon', null, get_lang('DeletePicture'));
  74. }
  75. $form->addHtml('</div>');
  76. $form->setDefaults($tool);
  77. $content = $form->returnForm();
  78. if ($form->validate()) {
  79. $data = $form->getSubmitValues();
  80. CourseHome::updateTool($id, $data);
  81. Display::addFlash(Display::return_message(get_lang('Updated')));
  82. if (isset($data['delete_icon'])) {
  83. CourseHome::deleteIcon($id);
  84. }
  85. $currentUrlReturn = api_get_self().'?'.api_get_cidreq();
  86. header('Location: '.$currentUrlReturn);
  87. exit;
  88. }
  89. break;
  90. case 'list':
  91. default:
  92. $toolList = CourseHome::toolsIconsAction(
  93. api_get_course_int_id(),
  94. api_get_session_id()
  95. );
  96. $iconsTools = '<div id="custom-icons">';
  97. $iconsTools .= Display::page_header(get_lang('CustomizeIcons'), null, 'h4');
  98. $iconsTools .= '<div class="row">';
  99. foreach ($toolList as $tool) {
  100. $tool['name'] = Security::remove_XSS(stripslashes($tool['name']));
  101. $toolIconName = 'Tool' . api_underscore_to_camel_case($tool['name']);
  102. $toolIconName = isset($$toolIconName) ? get_lang($toolIconName) : $tool['name'];
  103. $iconsTools .= '<div class="col-md-2">';
  104. $iconsTools .= '<div class="items-tools">';
  105. if (!empty($tool['custom_icon'])) {
  106. $image = getCustomWebIconPath().$tool['custom_icon'];
  107. $icon = Display::img($image, $toolIconName);
  108. } else {
  109. $image = (substr($tool['image'], 0, strpos($tool['image'], '.'))).'.png';
  110. $icon = Display::return_icon(
  111. $image,
  112. $toolIconName,
  113. array('id' => 'tool_'.$tool['id']),
  114. ICON_SIZE_BIG,
  115. false
  116. );
  117. }
  118. $delete = (!empty($tool['custom_icon'])) ? "<a class=\"btn btn-default\" onclick=\"javascript:
  119. if(!confirm('".addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES, $charset)).
  120. "')) return false;\" href=\"". api_get_self() . '?action=delete_icon&id=' . $tool['iid'] . '&'.api_get_cidreq()."\">
  121. <em class=\"fa fa-trash-o\"></em></a>" : "";
  122. $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>';
  123. $iconsTools .= '<div class="icon-tools">'. $icon . '</div>';
  124. $iconsTools .= '<div class="name-tools">' . $toolIconName . '</div>';
  125. $iconsTools .= '<div class="toolbar">' . $edit . $delete . '</div>';
  126. $iconsTools .= '</div>';
  127. $iconsTools .= '</div>';
  128. }
  129. $iconsTools .= '</div>';
  130. $iconsTools .= '</div>';
  131. $content = $iconsTools;
  132. break;
  133. }
  134. /**
  135. * @return string
  136. */
  137. function getCustomWebIconPath()
  138. {
  139. // Check if directory exists or create it if it doesn't
  140. $dir = api_get_path(WEB_COURSE_PATH).api_get_course_path().'/upload/course_home_icons/';
  141. return $dir;
  142. }
  143. //$tpl = new Template($toolName);
  144. echo $content;