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/>.
/**
* News ticker settings.
*
* @package theme_adaptable
* @copyright 2015 Jeremy Hopkins (Coventry University)
* @copyright 2015 Fernando Acedo (3-bits.com)
* @copyright 2023 G J Barnard
* {@link https://moodle.org/user/profile.php?id=442195}
* {@link https://gjbarnard.co.uk}
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
*/
defined('MOODLE_INTERNAL') || die;
// News Ticker heading.
if ($ADMIN->fulltree) {
$page = new \theme_adaptable\admin_settingspage(
'theme_adaptable_news_ticker',
get_string('newstickersettings', 'theme_adaptable'),
true
);
$page->add(new admin_setting_heading(
'theme_adaptable_ticker',
get_string('tickersettingsheading', 'theme_adaptable'),
format_text(get_string('tickerdesc', 'theme_adaptable'), FORMAT_MARKDOWN)
));
$name = 'theme_adaptable/enableticker';
$title = get_string('enableticker', 'theme_adaptable');
$description = get_string('enabletickerdesc', 'theme_adaptable');
$default = true;
$setting = new admin_setting_configcheckbox($name, $title, $description, $default, true, false);
$page->add($setting);
$name = 'theme_adaptable/enabletickermy';
$title = get_string('enabletickermy', 'theme_adaptable');
$description = get_string('enabletickermydesc', 'theme_adaptable');
$default = true;
$setting = new admin_setting_configcheckbox($name, $title, $description, $default, true, false);
$page->add($setting);
// Ticker header background colour.
$name = 'theme_adaptable/tickerheaderbackgroundcolour';
$title = get_string('tickerheaderbackgroundcolour', 'theme_adaptable');
$description = get_string('tickerheaderbackgroundcolourdesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#00796b', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Ticker header text colour.
$name = 'theme_adaptable/tickerheadertextcolour';
$title = get_string('tickerheadertextcolour', 'theme_adaptable');
$description = get_string('tickerheadertextcolourdesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#eee', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Ticker container background colour.
$name = 'theme_adaptable/tickerconstainerbackgroundcolour';
$title = get_string('tickerconstainerbackgroundcolour', 'theme_adaptable');
$description = get_string('tickerconstainerbackgroundcolourdesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#009688', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Ticker container text colour.
$name = 'theme_adaptable/tickerconstainertextcolour';
$title = get_string('tickerconstainertextcolour', 'theme_adaptable');
$description = get_string('tickerconstainertextcolourdesc', 'theme_adaptable');
$previewconfig = null;
$setting = new admin_setting_configcolourpicker($name, $title, $description, '#eee', $previewconfig);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Ticker Width (fullscreen / fixed width).
$name = 'theme_adaptable/tickerwidth';
$title = get_string('tickerwidth', 'theme_adaptable');
$description = get_string('tickerwidthdesc', 'theme_adaptable');
$options = [
'' => get_string('tickerwidth', 'theme_adaptable'),
'width: 100%;' => get_string('tickerfullscreen', 'theme_adaptable'),
];
$setting = new admin_setting_configselect($name, $title, $description, '', $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Number of news ticker sectons.
$name = 'theme_adaptable/newstickercount';
$title = get_string('newstickercount', 'theme_adaptable');
$description = get_string('newstickercountdesc', 'theme_adaptable');
$default = THEME_ADAPTABLE_DEFAULT_NEWSTICKERCOUNT;
$setting = new admin_setting_configselect($name, $title, $description, $default, $choices0to12);
$page->add($setting);
// If we don't have a menuscount yet, default to the preset.
$newstickercount = get_config('theme_adaptable', 'newstickercount');
if (!$newstickercount) {
$newstickercount = THEME_ADAPTABLE_DEFAULT_NEWSTICKERCOUNT;
}
for ($newstickerindex = 1; $newstickerindex <= $newstickercount; $newstickerindex++) {
$name = 'theme_adaptable/tickertext' . $newstickerindex;
$title = get_string('tickertext', 'theme_adaptable') . ' ' . $newstickerindex;
$description = get_string('tickertextdesc', 'theme_adaptable');
$default = '';
$setting = new adaptable_setting_confightmleditor($name, $title, $description, $default);
$page->add($setting);
$name = 'theme_adaptable/tickertext' . $newstickerindex . 'profilefield';
$title = get_string('tickertextprofilefield', 'theme_adaptable');
$description = get_string('tickertextprofilefielddesc', 'theme_adaptable');
$setting = new admin_setting_configtext($name, $title, $description, '', PARAM_RAW);
$page->add($setting);
}
$asettings->add($page);
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists