Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
theme /
brick /
[ HOME SHELL ]
Name
Size
Permission
Action
lang
[ DIR ]
drwxrwxrwx
layout
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
pix_core
[ DIR ]
drwxrwxrwx
style
[ DIR ]
drwxrwxrwx
config.php
7.61
KB
-rwxrwxrwx
lib.php
2.96
KB
-rwxrwxrwx
settings.php
2.37
KB
-rwxrwxrwx
version.php
1.2
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings.php
<?php defined('MOODLE_INTERNAL') || die; if ($ADMIN->fulltree) { // Background image setting // logo image setting $name = 'theme_brick/logo'; $title = get_string('logo','theme_brick'); $description = get_string('logodesc', 'theme_brick'); $setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // link color setting $name = 'theme_brick/linkcolor'; $title = get_string('linkcolor','theme_brick'); $description = get_string('linkcolordesc', 'theme_brick'); $default = '#06365b'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // link hover color setting $name = 'theme_brick/linkhover'; $title = get_string('linkhover','theme_brick'); $description = get_string('linkhoverdesc', 'theme_brick'); $default = '#5487ad'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // main color setting $name = 'theme_brick/maincolor'; $title = get_string('maincolor','theme_brick'); $description = get_string('maincolordesc', 'theme_brick'); $default = '#8e2800'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // main color accent setting $name = 'theme_brick/maincolorlink'; $title = get_string('maincolorlink','theme_brick'); $description = get_string('maincolorlinkdesc', 'theme_brick'); $default = '#fff0a5'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // heading color setting $name = 'theme_brick/headingcolor'; $title = get_string('headingcolor','theme_brick'); $description = get_string('headingcolordesc', 'theme_brick'); $default = '#5c3500'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); }
Close