function drupalforfirebug_menu in Drupal For Firebug 6
Same name and namespace in other branches
- 5 drupalforfirebug.module \drupalforfirebug_menu()
- 7.2 drupalforfirebug.module \drupalforfirebug_menu()
- 7 drupalforfirebug.module \drupalforfirebug_menu()
Implementation of hook_menu()
File
- ./
drupalforfirebug.module, line 38
Code
function drupalforfirebug_menu() {
$items['admin/firebug/exec'] = array(
'page callback' => 'drupalforfirebug_get_exec_php_callback',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
return $items;
}