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/>.
/**
* This displays block region settings for the dashboard page.
*
* @package theme_adaptable
* @copyright 2017 Manoj Solanki (Coventry University)
* @copyright 2015 Jeremy Hopkins (Coventry University)
* @copyright 2015 Fernando Acedo (3-bits.com)
* @copyright 2024 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;
if ($ADMIN->fulltree) {
$page = new \theme_adaptable\admin_settingspage(
'theme_adaptable_dash_block_regions',
get_string('dashboardblockregionsettings', 'theme_adaptable')
);
$page->add(new admin_setting_heading(
'theme_adaptable_heading',
get_string('dashblocklayoutbuilder', 'theme_adaptable'),
format_text(get_string('dashblocklayoutbuilderdesc', 'theme_adaptable'), FORMAT_MARKDOWN)
));
$name = 'theme_adaptable/dashblocksenabled';
$title = get_string('dashblocksenabled', 'theme_adaptable');
$description = get_string('dashblocksenableddesc', 'theme_adaptable');
$setting = new admin_setting_configcheckbox($name, $title, $description, false);
$page->add($setting);
$name = 'theme_adaptable/dashblocksposition';
$title = get_string('dashblocksposition', 'theme_adaptable');
$description = get_string('dashblockspositiondesc', 'theme_adaptable');
$default = 'abovecontent';
$choices = $dashboardblockregionposition;
$setting = new admin_setting_configselect($name, $title, $description, $default, $choices);
$page->add($setting);
// Dashboard block region builder.
$noregions = 20; // Number of block regions defined in config.php - frnt-market- etc.
['imgblder' => $imgblder, 'totalblocks' => $totalblocks] = \theme_adaptable\toolbox::admin_settings_layout_builder(
$page,
'dashblocklayoutlayoutrow',
5,
$bootstrap12defaults,
$bootstrap12
);
$page->add(new admin_setting_heading(
'theme_adaptable_dashblocklayoutcheck',
get_string('layoutcheck', 'theme_adaptable'),
format_text(get_string('layoutcheckdesc', 'theme_adaptable'), FORMAT_MARKDOWN)
));
$checkcountcolor = '#00695C';
if ($totalblocks > $noregions) {
$mktcountcolor = '#D7542A';
}
$mktcountmsg = '<span style="color: ' . $checkcountcolor . '">';
$mktcountmsg .= get_string('layoutcount1', 'theme_adaptable') . '<strong>' . $noregions . '</strong>';
$mktcountmsg .= get_string('layoutcount2', 'theme_adaptable') . '<strong>' . $totalblocks . '/' . $noregions . '</strong>.';
$page->add(new admin_setting_heading('theme_adaptable_dashlayoutblockscount', '', $mktcountmsg));
$page->add(new admin_setting_heading('theme_adaptable_dashlayoutbuilder', '', $imgblder));
$asettings->add($page);
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists