diff --git a/main/admin/course_list.php b/main/admin/course_list.php index c12f346715..1e583ee424 100644 --- a/main/admin/course_list.php +++ b/main/admin/course_list.php @@ -1,5 +1,5 @@ '.get_lang('Edit').' '. ''.get_lang('Delete').''; } +/** + * Return an icon representing the visibility of the course + */ +function get_course_visibility_icon($v) +{ + $path = api_get_path(REL_CLARO_PATH); + $style = 'style="margin-bottom:-5px;margin-right:5px;"'; + switch($v) + { + case 0: + return ''; + break; + case 1: + return ''; + break; + case 2: + return ''; + break; + case 3: + return ''; + break; + default: + return ''; + } +} + if (isset ($_POST['action'])) { switch ($_POST['action']) diff --git a/main/img/bullet_blue.gif b/main/img/bullet_blue.gif new file mode 100644 index 0000000000..c91ac4ae35 Binary files /dev/null and b/main/img/bullet_blue.gif differ diff --git a/main/img/bullet_green.gif b/main/img/bullet_green.gif new file mode 100644 index 0000000000..815e95d49c Binary files /dev/null and b/main/img/bullet_green.gif differ diff --git a/main/img/bullet_orange.gif b/main/img/bullet_orange.gif new file mode 100644 index 0000000000..36e82d8b45 Binary files /dev/null and b/main/img/bullet_orange.gif differ diff --git a/main/img/bullet_red.gif b/main/img/bullet_red.gif new file mode 100644 index 0000000000..0a02ccf10d Binary files /dev/null and b/main/img/bullet_red.gif differ