|
|
|
@ -1153,19 +1153,21 @@ switch ($action) { |
|
|
|
|
echo '<div class="actions">'; |
|
|
|
|
echo '<a href="course_category.php">'.Display::return_icon('edit.png', get_lang('Edit')).' '.get_lang('EditCategories').'</a>'; |
|
|
|
|
echo '</div>'; |
|
|
|
|
} |
|
|
|
|
echo '<ul class="list-group">'; |
|
|
|
|
if ($access_url_id == 1) { |
|
|
|
|
if (sizeof($Categories)) { |
|
|
|
|
|
|
|
|
|
if (count($Categories)) { |
|
|
|
|
foreach ($Categories as $enreg) { |
|
|
|
|
echo '<li class="list-group-item">'.Display::return_icon('folder.png', $enreg['name']).' '.$enreg['name'].'</li>'; |
|
|
|
|
echo '<li class="list-group-item">' |
|
|
|
|
.Display::return_icon('folder.png', get_lang('CourseCategory')).' '.$enreg['name'] |
|
|
|
|
.'</li>'; |
|
|
|
|
} |
|
|
|
|
unset($Categories); |
|
|
|
|
} else { |
|
|
|
|
echo get_lang('NoCategories'); |
|
|
|
|
} |
|
|
|
|
echo '<li class="list-group-item">'.get_lang('NoCategories').'</li>'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
echo '</ul>'; |
|
|
|
|
} |
|
|
|
|
?> |
|
|
|
|
|
|
|
|
|
<?php |
|
|
|
|