function flog_menu in File logger 7
Same name and namespace in other branches
- 6 flog.module \flog_menu()
Implementation of hook_menu()
File
- ./
flog.module, line 18 - File logger. Dump a variable to a configurable file.
Code
function flog_menu() {
$items['admin/config/development/flog'] = array(
'title' => 'File logging',
'description' => 'Simple file-based logging.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'flog_settings',
),
'access arguments' => array(
'administer site configuration',
),
'file' => 'flog.admin.inc',
);
return $items;
}