HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/elearningbasa.sumar.com.py/theme/almondb/settings/frontpage_settings.php
<?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/>.
/**
 * Theme almondb frontpage block setting.
 *
 * @package   theme_almondb
 * @copyright 2022 ThemesAlmond  - http://themesalmond.com
 * @author    ThemesAlmond - Developer Team
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

defined('MOODLE_INTERNAL') || die();
$page = new admin_settingpage('theme_almondb_frontpage', get_string('frontpagealmondb', 'theme_almondb'));
// Frontpage heading select.
$page->add(new admin_setting_heading('theme_almondb_frontpagenav', get_string('frontpagenav', 'theme_almondb'),
format_text(get_string('frontpagenavdesc', 'theme_almondb'), FORMAT_MARKDOWN)));
$name = 'theme_almondb/frontpagenavchoice';
$title = get_string('frontpagenavchoice', 'theme_almondb');
$description = get_string('frontpagenavchoicedesc', 'theme_almondb');
$default = 1;
$options = array();
for ($i = 1; $i < 4; $i++) {
    $options[$i] = $i;
}
$setting = new admin_setting_configselect($name, $title, $description, $default, $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Add container to navigation bar.
$name = 'theme_almondb/navbarcontainer';
$title = get_string('navbarcontainer', 'theme_almondb');
$description = get_string('navbarcontainerdesc', 'theme_almondb');
$setting = new admin_setting_configcheckbox($name, $title, $description, 0);
$page->add($setting);
// Frontpage header logo select.
$name = 'theme_almondb/headerlogo';
$title = get_string('headerlogo', 'theme_almondb');
$description = get_string('headerlogodesc', 'theme_almondb');
$default = "Logo";
$options = array(
    'Logo' => 'Logo',
    'Compact logo' => 'Compact logo',
);
$setting = new admin_setting_configselect($name, $title, $description, $default, $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Navbar back color.
$name = 'theme_almondb/navbarcolor';
$title = get_string('navbarcolor', 'theme_almondb');
$description = get_string('navbarcolor_desc', 'theme_almondb');
$setting = new admin_setting_configcolourpicker($name, $title, $description, '');
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);
// Menu light-dark.
$name = 'theme_almondb/frontpagenavlightdark';
$title = get_string('frontpagenavlightdark', 'theme_almondb');
$description = get_string('frontpagenavlightdarkdesc', 'theme_almondb');
$default = "navbar-light";
$options = array();
$options = array(
    'navbar-light' => 'navbar-light',
    'navbar-dark' => 'navbar-dark',
);
$setting = new admin_setting_configselect($name, $title, $description, $default, $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);

// Frontpage nav link area.
$name = 'theme_almondb/frontpagenavlink';
$title = get_string('frontpagenavlink', 'theme_almondb');
$description = get_string('frontpagenavlinkdesc', 'theme_almondb');
$default = get_string('frontpagenavlinkdefault', 'theme_almondb');
$setting = new admin_setting_configtextarea($name, $title, $description, $default, PARAM_RAW, '1', '6');
$page->add($setting);
// Frontpage header 3 phone number.
$name = 'theme_almondb/header3phone';
$title = get_string('header3phone', 'theme_almondb');
$description = get_string('header3phonedesc', 'theme_almondb');
$default = "";
$setting = new admin_setting_configtext($name, $title, $description, '', PARAM_TEXT);
$page->add($setting);
// Frontpage choice.
$page->add(new admin_setting_heading('theme_almondb_frontpagehead', get_string('frontpageheading', 'theme_almondb'),
format_text(get_string('frontpagedesc', 'theme_almondb'), FORMAT_MARKDOWN)));

// Frontpage design select.
$name = 'theme_almondb/frontpagechoice';
$title = get_string('frontpagechoice', 'theme_almondb');
$description = get_string('frontpagechoicedesc', 'theme_almondb');
$default = 1;
$options = array();
$options = array();
for ($i = 1; $i <= 1; $i++) {
    $options[$i] = $i;
}
$setting = new admin_setting_configselect($name, $title, $description, $default, $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);

// Frontpage color select.
$name = 'theme_almondb/frontpagecolor';
$title = get_string('frontpagecolor', 'theme_almondb');
$description = get_string('frontpagecolordesc', 'theme_almondb');
$default = '#4272d7';
$options = array();
$options = array(
    '#4272d7' => '1',
    '#f98012' => '2',
    '#fa4251' => '3',
    '#c45e28' => '4',
    '#63c76a' => '5',
    '#024E64' => '6',
);
$setting = new admin_setting_configselect($name, $title, $description, $default, $options);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);

// Frontpage color palet.
$name = 'theme_almondb/sitecolor';
$title = get_string('sitecolor', 'theme_almondb');
$description = get_string('sitecolor_desc', 'theme_almondb');
$setting = new admin_setting_configcolourpicker($name, $title, $description, '');
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);

$page->add(new admin_setting_heading('theme_almondb_frontpageend', get_string('frontpageend', 'theme_almondb'),
format_text(get_string('frontpageenddesc', 'theme_almondb'), FORMAT_MARKDOWN)));
$settings->add($page);