function datex_menu in Datex 7.2
Same name and namespace in other branches
- 7.3 datex.module \datex_menu()
- 7 datex.module \datex_menu()
Implements hook_menu().
File
- ./
datex.module, line 22 - Convert output of date_format() to Jalali in a patched drupal installation.
Code
function datex_menu() {
$items['admin/config/regional/date-time/datex'] = array(
'title' => 'Datex',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'datex_admin_form',
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_LOCAL_TASK,
'file' => 'datex.admin.inc',
);
$items['admin/config/regional/date-time/datex/edit/%'] = array(
'title' => 'Datex edit schema',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'datex_schema_edit_form',
6,
),
'access arguments' => array(
'administer site configuration',
),
'type' => MENU_CALLBACK,
'file' => 'datex.admin.inc',
);
return $items;
}