function labjs_menu in LABjs 7
Same name and namespace in other branches
- 6 labjs.module \labjs_menu()
Implements hook_menu().
File
- ./
labjs.module, line 50 - LABjs module
Code
function labjs_menu() {
$items = array();
$file_path = drupal_get_path('module', 'labjs') . '/includes';
$items['admin/config/development/labjs'] = array(
'title' => 'LABjs',
'description' => 'Configure the settings used to wrap JS blocks.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'labjs_admin_settings_form',
),
'access arguments' => array(
'administer site configuration',
),
'file path' => $file_path,
'file' => 'labjs.admin.inc',
);
return $items;
}