MDL-34866 - Make "course display" default a site configurable option
* Moved COURSE_DISPLAY_SINGLEPAGE and COURSE_DISPLAY_MULTIPAGE constants from courselib to moodlelib.php * Using course display constants in course default admin setting page
This commit is contained in:
@@ -48,9 +48,9 @@ if ($hassiteconfig
|
||||
}
|
||||
|
||||
$choices = array();
|
||||
$choices[0] = new lang_string('coursedisplay_single');
|
||||
$choices[1] = new lang_string('coursedisplay_multi');
|
||||
$temp->add(new admin_setting_configselect('moodlecourse/coursedisplay', new lang_string('coursedisplay'), new lang_string('coursedisplay_help'), 0, $choices));
|
||||
$choices[COURSE_DISPLAY_SINGLEPAGE] = new lang_string('coursedisplay_single');
|
||||
$choices[COURSE_DISPLAY_MULTIPAGE] = new lang_string('coursedisplay_multi');
|
||||
$temp->add(new admin_setting_configselect('moodlecourse/coursedisplay', new lang_string('coursedisplay'), new lang_string('coursedisplay_help'), COURSE_DISPLAY_SINGLEPAGE, $choices));
|
||||
|
||||
$temp->add(new admin_setting_heading('groups', new lang_string('groups', 'group'), ''));
|
||||
$choices = array();
|
||||
|
||||
@@ -47,9 +47,6 @@ define('FIRSTUSEDEXCELROW', 3);
|
||||
define('MOD_CLASS_ACTIVITY', 0);
|
||||
define('MOD_CLASS_RESOURCE', 1);
|
||||
|
||||
define('COURSE_DISPLAY_SINGLEPAGE', 0); // display all sections on one page
|
||||
define('COURSE_DISPLAY_MULTIPAGE', 1); // split pages into a page per section
|
||||
|
||||
function make_log_url($module, $url) {
|
||||
switch ($module) {
|
||||
case 'course':
|
||||
|
||||
@@ -485,6 +485,12 @@ define('MOODLE_OFFICIAL_MOBILE_SERVICE', 'moodle_mobile_app');
|
||||
*/
|
||||
define('USER_CAN_IGNORE_FILE_SIZE_LIMITS', -1);
|
||||
|
||||
/**
|
||||
* Course display settings
|
||||
*/
|
||||
define('COURSE_DISPLAY_SINGLEPAGE', 0); // display all sections on one page
|
||||
define('COURSE_DISPLAY_MULTIPAGE', 1); // split pages into a page per section
|
||||
|
||||
/// PARAMETER HANDLING ////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user