. /** * Settings for the overview block. * * @package block_myoverview * @copyright 2017 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die; require_once($CFG->dirroot . '/blocks/myoverview/lib.php'); if ($ADMIN->fulltree) { $options = [ BLOCK_MYOVERVIEW_TIMELINE_VIEW => get_string('timeline', 'block_myoverview'), BLOCK_MYOVERVIEW_COURSES_VIEW => get_string('courses') ]; $settings->add(new admin_setting_configselect('block_myoverview/defaulttab', get_string('defaulttab', 'block_myoverview'), get_string('defaulttab_desc', 'block_myoverview'), 'timeline', $options)); }