Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

<?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/>.

/**
 *
 * @package   theme_monocolor
 * @copyright 2023 Marcin Czaja (https://rosea.io)
 * @license   Commercial https://themeforest.net/licenses
 *
 */


defined('MOODLE_INTERNAL') || die();

$page = new admin_settingpage('theme_monocolor_block16', get_string('settingsblock16', 'theme_monocolor'));

$name = 'theme_monocolor/displayblock16';
$title = get_string('turnon', 'theme_monocolor');
$description = get_string('displayblock16_desc', 'theme_monocolor');
$default = 0;
$setting = new admin_setting_configcheckbox($name, $title .
    '<span class="badge badge-sq badge-dark ml-2">Block #16</span>', $description, $default);
$page->add($setting);

$name = 'theme_monocolor/displayhrblock16';
$title = get_string('displayblockhr', 'theme_monocolor');
$description = get_string('displayblockhr_desc', 'theme_monocolor');
$default = 1;
$setting = new admin_setting_configcheckbox($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16id';
$title = get_string('additionalid', 'theme_monocolor');
$description = get_string('additionalid_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtext($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16class';
$title = get_string('additionalclass', 'theme_monocolor');
$description = get_string('additionalclass_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtext($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16introsubtitle';
$title = get_string('blockintrosubtitle', 'theme_monocolor');
$description = get_string('blockintrosubtitle_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtextarea($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16introtitle';
$title = get_string('blockintrotitle', 'theme_monocolor');
$description = get_string('blockintrotitle_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtextarea($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16introcontent';
$title = get_string('blockintrocontent', 'theme_monocolor');
$description = get_string('blockintrocontent_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtextarea($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16htmlcontent';
$title = get_string('blockhtmlcontent', 'theme_monocolor');
$description = get_string('blockhtmlcontent_desc', 'theme_monocolor');
$default = '<div class="row">

<!-- Start item -->
<div class="col-12 col-md-6 col-lg-3 px-3 my-3 my-lg-0 text-center text-md-left">
    <div class="lead-3 mb-2">$99</div>
    <p class="rui-card-text--md">Standard, Lifetime License</p>
</div>
<!-- End item -->

<!-- Start item -->
<div class="col-12 col-md-6 col-lg-3 px-3 my-3 my-lg-0 text-center text-md-left">
    <div class="lead-3 mb-2">Free</div>
    <p class="rui-card-text--md">Updates and bug fixes</p>
</div>
<!-- End item -->

<!-- Start item -->
<div class="col-12 col-md-6 col-lg-3 px-3 my-3 my-lg-0 text-center text-md-left">
    <div class="lead-3 mb-2">2000+</div>
    <p class="rui-card-text--md">Trusted users</p>
</div>
<!-- End item -->

<!-- Start item -->
<div class="col-12 col-md-6 col-lg-3 px-3 my-3 my-lg-0 text-center text-md-left">
    <div class="lead-3 mb-2">Moodle</div>
    <p class="rui-card-text--md">Compatible with 4.x</p>
</div>
<!-- End item -->
</div>';
$setting = new monocolor_setting_confightmleditor($name, $title, $description, $default);
$page->add($setting);

$name = 'theme_monocolor/block16footercontent';
$title = get_string('blockfootercontent', 'theme_monocolor');
$description = get_string('blockfootercontent_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtextarea($name, $title, $description, $default);
$page->add($setting);

$fileid = 'block16bg';
$name = 'theme_monocolor/block16bg';
$title = get_string('blockbg', 'theme_monocolor');
$description = get_string('blockbg_desc', 'theme_monocolor');
$opts = array('accepted_types' => array('.png', '.jpg', '.gif', '.webp', '.tiff', '.svg'), 'maxfiles' => 1);
$setting = new admin_setting_configstoredfile($name, $title, $description, $fileid, 0, $opts);
$setting->set_updatedcallback('theme_reset_all_caches');
$page->add($setting);

$name = 'theme_monocolor/block16customcss';
$title = get_string('blockcustomcss', 'theme_monocolor');
$description = get_string('blockcustomcss_desc', 'theme_monocolor');
$default = '';
$setting = new admin_setting_configtextarea($name, $title, $description, $default);
$page->add($setting);

$settings->add($page);