Sindbad~EG File Manager
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Frontpage slider
*
* @package theme_adaptable
* @copyright 2015 Jeremy Hopkins (Coventry University)
* @copyright 2015 Fernando Acedo (3-bits.com)
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*
*/
defined('MOODLE_INTERNAL') || die;
// Frontpage Slider.
if ($ADMIN->fulltree) {
$page = new \theme_adaptable\admin_settingspage(
'theme_adaptable_frontpage_slider',
get_string('frontpageslidersettings', 'theme_adaptable')
);
$page->add(new admin_setting_heading(
'theme_adaptable_slideshow',
get_string('slideshowsettingsheading', 'theme_adaptable'),
format_text(
get_string('slideshowdesc', 'theme_adaptable'),
FORMAT_MARKDOWN
)
));
$name = 'theme_adaptable/sliderenabled';
$title = get_string('sliderenabled', 'theme_adaptable');
$description = get_string('sliderenableddesc', 'theme_adaptable');
$setting = new admin_setting_configcheckbox($name, $title, $description, 0);
$page->add($setting);
$name = 'theme_adaptable/slidervisible';
$title = get_string('slidervisible', 'theme_adaptable');
$description = get_string('slidervisibledesc', 'theme_adaptable');
$options = [
1 => get_string('slidervisibleloggedout', 'theme_adaptable'),
2 => get_string('slidervisibleloggedin', 'theme_adaptable'),
3 => get_string('slidervisibleloggedinout', 'theme_adaptable'),
];
$setting = new admin_setting_configselect($name, $title, $description, 3, $options);
$page->add($setting);
$name = 'theme_adaptable/sliderfullscreen';
$title = get_string('sliderfullscreen', 'theme_adaptable');
$description = get_string('sliderfullscreendesc', 'theme_adaptable');
$setting = new admin_setting_configcheckbox($name, $title, $description, 0);
$page->add($setting);
$name = 'theme_adaptable/slidermargintop';
$title = get_string('slidermargintop', 'theme_adaptable');
$description = get_string('slidermargintopdesc', 'theme_adaptable');
$radchoices = $from0to20px;
$setting = new admin_setting_configselect($name, $title, $description, '20px', $radchoices);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slidermarginbottom';
$title = get_string('slidermarginbottom', 'theme_adaptable');
$description = get_string('slidermarginbottomdesc', 'theme_adaptable');
$radchoices = $from0to20px;
$setting = new admin_setting_configselect($name, $title, $description, '20px', $radchoices);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slideroption2';
$title = get_string('slideroption2', 'theme_adaptable');
$description = get_string('slideroption2desc', 'theme_adaptable');
$radchoices = $sliderstyles;
$setting = new admin_setting_configselect($name, $title, $description, 'nocaptions', $radchoices);
$page->add($setting);
$slideroption2 = get_config('theme_adaptable', 'slideroption2');
if (!isset($slideroption2)) {
$slideroption2 = 'slider1';
}
if ($slideroption2 == 'slider1') {
$name = 'theme_adaptable/sliderh3color';
$title = get_string('sliderh3color', 'theme_adaptable');
$description = get_string('sliderh3colordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/sliderh4color';
$title = get_string('sliderh4color', 'theme_adaptable');
$description = get_string('sliderh4colordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slidersubmitcolor';
$title = get_string('slidersubmitcolor', 'theme_adaptable');
$description = get_string('slidersubmitcolordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slidersubmitbgcolor';
$title = get_string('slidersubmitbgcolor', 'theme_adaptable');
$description = get_string('slidersubmitbgcolordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#51666C', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
}
if ($slideroption2 == 'slider2') {
$name = 'theme_adaptable/slider2h3color';
$title = get_string('slider2h3color', 'theme_adaptable');
$description = get_string('slider2h3colordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slider2h3bgcolor';
$title = get_string('slider2h3bgcolor', 'theme_adaptable');
$description = get_string('slider2h3bgcolordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#000000', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slider2h4color';
$title = get_string('slider2h4color', 'theme_adaptable');
$description = get_string('slider2h4colordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#000000', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slider2h4bgcolor';
$title = get_string('slider2h4bgcolor', 'theme_adaptable');
$description = get_string('slider2h4bgcolordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slideroption2submitcolor';
$title = get_string('slideroption2submitcolor', 'theme_adaptable');
$description = get_string('slideroption2submitcolordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#ffffff', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slideroption2color';
$title = get_string('slideroption2color', 'theme_adaptable');
$description = get_string('slideroption2colordesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#51666C', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
$name = 'theme_adaptable/slideroption2a';
$title = get_string('slideroption2a', 'theme_adaptable');
$description = get_string('slideroption2adesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#51666C', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
}
// Number of Sliders.
$name = 'theme_adaptable/slidercount';
$title = get_string('slidercount', 'theme_adaptable');
$description = get_string('slidercountdesc', 'theme_adaptable');
$default = THEME_ADAPTABLE_DEFAULT_SLIDERCOUNT;
$setting = new admin_setting_configselect($name, $title, $description, $default, $choices0to12);
$page->add($setting);
// If we don't have an slide yet, default to the preset.
$slidercount = get_config('theme_adaptable', 'slidercount');
if (!$slidercount) {
$slidercount = THEME_ADAPTABLE_DEFAULT_SLIDERCOUNT;
}
for ($sliderindex = 1; $sliderindex <= $slidercount; $sliderindex++) {
$fileid = 'p' . $sliderindex;
$name = 'theme_adaptable/p' . $sliderindex;
$title = get_string('sliderimage', 'theme_adaptable');
$description = get_string('sliderimagedesc', 'theme_adaptable');
$setting = new \theme_adaptable\admin_setting_configstoredfiles(
$name, $title, $description, $fileid,
['accepted_types' => '*.jpg,*.jpeg,*.png', 'maxfiles' => 1]
);
$page->add($setting);
$name = 'theme_adaptable/p' . $sliderindex . 'url';
$title = get_string('sliderurl', 'theme_adaptable');
$description = get_string('sliderurldesc', 'theme_adaptable');
$setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL);
$page->add($setting);
$name = 'theme_adaptable/p' . $sliderindex . 'cap';
$title = get_string('slidercaption', 'theme_adaptable');
$description = get_string('slidercaptiondesc', 'theme_adaptable');
$default = '';
$setting = new adaptable_setting_confightmleditor($name, $title, $description, $default);
$page->add($setting);
}
$asettings->add($page);
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists