Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/blocks/course_list/settings.php
Go to the documentation of this file.
00001 <?php
00002 
00003 defined('MOODLE_INTERNAL') || die;
00004 
00005 if ($ADMIN->fulltree) {
00006     $options = array('all'=>get_string('allcourses', 'block_course_list'), 'own'=>get_string('owncourses', 'block_course_list'));
00007 
00008     $settings->add(new admin_setting_configselect('block_course_list_adminview', get_string('adminview', 'block_course_list'),
00009                        get_string('configadminview', 'block_course_list'), 'all', $options));
00010 
00011     $settings->add(new admin_setting_configcheckbox('block_course_list_hideallcourseslink', get_string('hideallcourseslink', 'block_course_list'),
00012                        get_string('confighideallcourseslink', 'block_course_list'), 0));
00013 }
00014 
00015 
 All Data Structures Namespaces Files Functions Variables Enumerations