|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.65 GB of 70.42 GB (39.27%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar/
modules/
menu/
- dr-xr-xr-x
|
Viewing file: menu.api.php (2.56 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php
/** * @file * Hooks provided by the Menu module. */
/** * @addtogroup hooks * @{ */
/** * Informs modules that a custom menu was created. * * 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); }
/** * Informs modules that a custom menu was updated. * * 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); }
/** * Informs modules that a custom menu was deleted. * * 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 $link * 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". */
|