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.226.169.169
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 : dropbutton.theme.inc
<?php /** * @file * Provide a javascript based dropbutton menu. * * An example are the edit/disable/delete links on the views listing page. * * The dropbutton menu will show up as a button with a clickable twisty pointer * to the right. When clicked the button will expand, showing the list of links. * * The dropbutton will stay open until either the user has moved the mouse * away from the box for > .5 seconds, or can be immediately closed by * clicking the twisty again. The code is smart enough that if the mouse * moves away and then back within the .5 second window, it will not * re-close. * * Multiple dropbuttons can be placed per page. * * If only one link is passed to the theme function, the function will render * a ctools-button with no twisty. The twisty is only rendered when 2 or more * links are provided. The wrapping element will be classed with both * ctools-button and ctools-dropbutton when a dropbutton is rendered. * * If the user does not have javascript enabled, the link will not appear, * and instead by default the list of links will appear as a normal inline * list. * * The menu is minimally styled by default, and to make it look different * will require your own CSS. You can apply your own class to the * dropbutton to help style it. * * The twisty is rendered as a border on a widthless and heightless element. * There is no image for the twisty. * The color of the twisty is the color of the link by default. To adjust the * size of the twisty, adjust the border widths on .ctools-twisty. The adjust * the color of the twisty, assign a new color to the .ctools-button class or * assign a color to .ctools-twisty. You shouldn't need to adjust border-color. * * Use the theme() function to render dropbutton e.g. * theme('links__ctools_dropbutton', array()) where array contains a renderable * array of links. */ /** * Delegated implementation of hook_theme() */ function ctools_dropbutton_theme(&$items) { $items['links__ctools_dropbutton'] = array( 'variables' => array('title' => NULL, 'links' => NULL, 'image' => FALSE, 'class' => NULL), 'file' => 'includes/dropbutton.theme.inc', ); } /** * Create a dropbutton menu. * * @param $title * The text to place in the clickable area to activate the dropbutton. This * text is indented to -9999px by default. * @param $links * A list of links to provide within the dropbutton, suitable for use * in via Drupal's theme('links'). * @param $image * If true, the dropbutton link is an image and will not get extra decorations * that a text dropbutton link will. * @param $class * An optional class to add to the dropbutton's container div to allow you * to style a single dropbutton however you like without interfering with * other dropbuttons. */ function theme_links__ctools_dropbutton($vars) { // Check to see if the number of links is greater than 1; // otherwise just treat this like a button. if (!empty($vars['links'])) { $is_drop_button = (count($vars['links']) > 1); // Add needed files if ($is_drop_button) { ctools_add_js('dropbutton'); ctools_add_css('dropbutton'); } ctools_add_css('button'); // Provide a unique identifier for every button on the page. static $id = 0; $id++; // Wrapping div $class = 'ctools-no-js'; $class .= ($is_drop_button) ? ' ctools-dropbutton' : ''; $class .= ' ctools-button'; if (!empty($vars['class'])) { $class .= ($vars['class']) ? (' ' . implode(' ', $vars['class'])) : ''; } $output = ''; $output .= '<div class="' . $class . '" id="ctools-button-' . $id . '">'; // Add a twisty if this is a dropbutton if ($is_drop_button) { $vars['title'] = ($vars['title'] ? check_plain($vars['title']) : t('open')); $output .= '<div class="ctools-link">'; if ($vars['image']) { $output .= '<a href="#" class="ctools-twisty ctools-image">' . $vars['title'] . '</a>'; } else { $output .= '<a href="#" class="ctools-twisty ctools-text">' . $vars['title'] . '</a>'; } $output .= '</div>'; // ctools-link } // The button content $output .= '<div class="ctools-content">'; // Check for attributes. theme_links expects an array(). $vars['attributes'] = (!empty($vars['attributes'])) ? $vars['attributes'] : array(); // Remove the inline and links classes from links if they exist. // These classes are added and styled by Drupal core and mess up the default // styling of any link list. if (!empty($vars['attributes']['class'])) { $classes = $vars['attributes']['class']; foreach ($classes as $key => $class) { if ($class === 'inline' || $class === 'links') { unset($vars['attributes']['class'][$key]); } } } // Call theme_links to render the list of links. $output .= theme_links(array('links' => $vars['links'], 'attributes' => $vars['attributes'], 'heading' => '')); $output .= '</div>'; // ctools-content $output .= '</div>'; // ctools-dropbutton return $output; } else { return ''; } }
Close