function poormanscron_menu in Poormanscron 6.2
Same name and namespace in other branches
- 5.2 poormanscron.module \poormanscron_menu()
- 5 poormanscron.module \poormanscron_menu()
- 6 poormanscron.module \poormanscron_menu()
Implements hook_menu().
File
- ./
poormanscron.module, line 11 - A module which runs Drupal cron jobs without the cron application.
Code
function poormanscron_menu() {
$items['poormanscron/run-cron-check'] = array(
'page callback' => 'poormanscron_run_cron_check',
'access callback' => 'poormanscron_run_cron_check_access',
'type' => MENU_CALLBACK,
);
return $items;
}