From a912de3eb7d9515a3da0cfdfc99edd91b3280aa3 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 22 Aug 2003 13:42:27 +0000 Subject: [PATCH] Add link on admin page about students, for completeness. In the next version this link will link to the new enrolment subsystem. Also reduced font size to make the admin page a bit nicer on small screens. --- admin/index.php | 26 ++++++++++++++------------ lang/en/moodle.php | 1 + 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/admin/index.php b/admin/index.php index 449d98166f..ba5c2f3d91 100644 --- a/admin/index.php +++ b/admin/index.php @@ -355,37 +355,39 @@ $table->cellspacing = 3; $table->width = "90%"; - $configdata = "".get_string("configvariables")." - ". + $configdata = "".get_string("configvariables")." - ". get_string("adminhelpconfigvariables")."
"; - $configdata .= "".get_string("sitesettings")." - ". + $configdata .= "".get_string("sitesettings")." - ". get_string("adminhelpsitesettings")."
"; - $configdata .= "".get_string("themes")." - ". + $configdata .= "".get_string("themes")." - ". get_string("adminhelpthemes")."
"; - $configdata .= "".get_string("language")." - ". + $configdata .= "".get_string("language")." - ". get_string("adminhelplanguage")."
"; - $configdata .= "".get_string("managemodules")." - ". + $configdata .= "".get_string("managemodules")." - ". get_string("adminhelpmanagemodules")."
"; $table->data[] = array("".get_string("configuration")."", $configdata); - $userdata = "".get_string("authentication")." - ". + $userdata = "".get_string("authentication")." - ". get_string("adminhelpauthentication")."
"; if ($CFG->auth == "email" || $CFG->auth == "none" || $CFG->auth == "manual") { $userdata .= "wwwroot/$CFG->admin/user.php?newuser=true\">". - get_string("addnewuser")." - ". + get_string("addnewuser")." - ". get_string("adminhelpaddnewuser")."
"; } - $userdata .= "".get_string("edituser")." - ". + $userdata .= "".get_string("edituser")." - ". get_string("adminhelpedituser")."
"; - $userdata .= "".get_string("assignadmins")." - ". + $userdata .= "".get_string("assignadmins")." - ". get_string("adminhelpassignadmins")."
"; - $userdata .= "".get_string("assigncreators")." - ". + $userdata .= "".get_string("assigncreators")." - ". get_string("adminhelpassigncreators")."
"; - $userdata .= "".get_string("assignteachers")." - ". + $userdata .= "".get_string("assignteachers")." - ". get_string("adminhelpassignteachers"). - " "; + "
"; + $userdata .= "".get_string("assignstudents")." - ". + get_string("adminhelpassignstudents"); $table->data[] = array("".get_string("users")."", $userdata); diff --git a/lang/en/moodle.php b/lang/en/moodle.php index 5f172d112a..75f05cacf5 100644 --- a/lang/en/moodle.php +++ b/lang/en/moodle.php @@ -28,6 +28,7 @@ $string['admin'] = "Admin"; $string['adminhelpaddnewuser'] = "To manually create a new user account"; $string['adminhelpassignadmins'] = "Admins can do anything and go anywhere in the site"; $string['adminhelpassigncreators'] = "Creators can create new courses and teach in them"; +$string['adminhelpassignstudents'] = "Admins and teachers can add students within courses"; $string['adminhelpassignteachers'] = "Select a course then use the icon to add teachers"; $string['adminhelpauthentication'] = "You can use internal user accounts or external databases"; $string['adminhelpconfiguration'] = "Configure how the site looks and works"; -- 2.39.5