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.145.153.251
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 /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax-responder.js
3.63
KB
-rw-r--r--
auto-submit.js
3.27
KB
-rw-r--r--
collapsible-div.js
7.77
KB
-rw-r--r--
dependent.js
8.4
KB
-rw-r--r--
dropbutton.js
3.14
KB
-rw-r--r--
dropdown.js
2.97
KB
-rw-r--r--
jump-menu.js
1.07
KB
-rw-r--r--
modal.js
24.21
KB
-rw-r--r--
states-show.js
1.14
KB
-rw-r--r--
stylizer.js
6.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : states-show.js
/** * @file * Custom state for handling visibility */ /** * Add a new state to Drupal #states. We use this to toggle element-invisible * to show/hidden #states elements. This allows elements to be visible to * screen readers. * * To use: * $form['my_form_field'] = array( * .. * // Only show this field if 'some_other_field' is checked. * '#states => array( * 'show' => array( * 'some-other-field' => array('checked' => TRUE), * ), * ), * .. * // Required to load the 'show' state handler. * '#attached' => array( * 'js' => array(ctools_attach_js('states-show')), * ), * ); */ (function ($) { 'use strict'; Drupal.states.State.aliases.hidden = '!show'; // Show/hide form items by toggling the 'element-invisible' class. This is a // more accessible option than the core 'visible' state. $(document).bind('state:show', function(e) { if (e.trigger) { var element = $(e.target).closest('.form-item, .form-submit, .form-wrapper'); element.toggle(e.value); e.value === true ? element.removeClass('element-invisible') : element.addClass('element-invisible'); } }); })(jQuery);
Close