Minor - format code

pull/2487/head
jmontoyaa 8 years ago
parent 79c7f17832
commit 5cb56ac03c
  1. 2
      main/course_home/2column.php
  2. 26
      main/course_home/3column.php
  3. 1
      main/course_home/course_home.php

@ -24,7 +24,6 @@ if (api_is_allowed_to_edit(null, true)) {
/* /*
* Display message to confirm that a tool must be hidden from the list of available tools (visibility 0,1->2) * Display message to confirm that a tool must be hidden from the list of available tools (visibility 0,1->2)
*/ */
if (isset($_GET['remove']) && $_GET['remove']) { if (isset($_GET['remove']) && $_GET['remove']) {
$msgDestroy = get_lang('DelLk').'<br />'; $msgDestroy = get_lang('DelLk').'<br />';
$msgDestroy .= '<a href="'.api_get_self().'">'.get_lang('No').'</a>&nbsp;|&nbsp;'; $msgDestroy .= '<a href="'.api_get_self().'">'.get_lang('No').'</a>&nbsp;|&nbsp;';
@ -100,7 +99,6 @@ if (api_is_allowed_to_edit(null, true) && !api_is_coach()) {
"</tr>"; "</tr>";
$content .= CourseHome::show_tool_2column(TOOL_PUBLIC_BUT_HIDDEN); $content .= CourseHome::show_tool_2column(TOOL_PUBLIC_BUT_HIDDEN);
$content .= "</table>"; $content .= "</table>";
$content .= "</div> "; $content .= "</div> ";
} }

@ -79,35 +79,28 @@ if (api_is_allowed_to_edit(null, true)) {
"</font></td></tr>\n", "</font></td></tr>\n",
"</table>\n"; "</table>\n";
echo "<br /><br /><br />\n"; echo "<br /><br /><br />\n";
} elseif ($destroy) {
} // if remove // if remove
/* /*
* Process hiding a tools from aivailable tools. * Process hiding a tools from aivailable tools.
* visibility=2 are only view by Dokeos Administrator (visibility 0,1->2) * visibility=2 are only view by Dokeos Administrator (visibility 0,1->2)
*/ */
elseif ($destroy) {
Database::query("UPDATE $TBL_ACCUEIL SET visibility='2' WHERE c_id = $course_id AND id = $id"); Database::query("UPDATE $TBL_ACCUEIL SET visibility='2' WHERE c_id = $course_id AND id = $id");
} } elseif ($hide) {
// visibility 1 -> 0
/* HIDE */ /* HIDE */
elseif ($hide) { // visibility 1 -> 0
Database::query("UPDATE $TBL_ACCUEIL SET visibility=0 WHERE c_id = $course_id AND id=$id"); Database::query("UPDATE $TBL_ACCUEIL SET visibility=0 WHERE c_id = $course_id AND id=$id");
$show_message .= Display::return_message(get_lang('ToolIsNowHidden'), 'confirmation'); $show_message .= Display::return_message(get_lang('ToolIsNowHidden'), 'confirmation');
} } elseif ($restore) {
/* REACTIVATE */ /* REACTIVATE */
// visibility 0,2 -> 1
elseif ($restore) { // visibility 0,2 -> 1
Database::query("UPDATE $TBL_ACCUEIL SET visibility=1 WHERE c_id = $course_id AND id=$id"); Database::query("UPDATE $TBL_ACCUEIL SET visibility=1 WHERE c_id = $course_id AND id=$id");
$show_message .= Display::return_message(get_lang('ToolIsNowVisible'), 'confirmation'); $show_message .= Display::return_message(get_lang('ToolIsNowVisible'), 'confirmation');
} } elseif (isset($update) && $update) {
/* /*
* Editing "apparance" of a tools on the course Home Page. * Editing "apparance" of a tools on the course Home Page.
*/ */
elseif (isset($update) && $update) {
$result = Database::query("SELECT * FROM $TBL_ACCUEIL WHERE c_id = $course_id AND id=$id"); $result = Database::query("SELECT * FROM $TBL_ACCUEIL WHERE c_id = $course_id AND id=$id");
$tool = Database::fetch_array($result); $tool = Database::fetch_array($result);
$racine = api_get_path(SYS_PATH).'/'.$currentCourseID.'/images/'; $racine = api_get_path(SYS_PATH).'/'.$currentCourseID.'/images/';
@ -175,13 +168,12 @@ if (api_is_platform_admin() && api_is_allowed_to_edit(null, true) && !api_is_coa
</td> </td>
</tr> </tr>
</table>\n"; </table>\n";
} // if remove } elseif (isset($delete) && $delete) {
// if remove
/* /*
* Process hiding a tools from aivailable tools. * Process hiding a tools from aivailable tools.
* visibility=2 are only viewed by Dokeos Administrator visibility 0,1->2 * visibility=2 are only viewed by Dokeos Administrator visibility 0,1->2
*/ */
elseif (isset($delete) && $delete) {
Database::query("DELETE FROM $TBL_ACCUEIL WHERE c_id = $course_id AND id = $id AND added_tool=1"); Database::query("DELETE FROM $TBL_ACCUEIL WHERE c_id = $course_id AND id = $id AND added_tool=1");
} }
} }

@ -293,7 +293,6 @@ $tpl->assign('content', $content);
// Direct login to course // Direct login to course
$tpl->assign('course_code', $course_code); $tpl->assign('course_code', $course_code);
$tpl->display_one_col_template(); $tpl->display_one_col_template();
// Deleting the objects // Deleting the objects

Loading…
Cancel
Save