1 batch_example.module | batch_example_menu() |
Implements hook_menu().
Related topics
File
- modules/
examples/ batch_example/ batch_example.module, line 31 - Hook implementations for the Batch Example module.
Code
function batch_example_menu() {
$items = array();
$items['examples/batch_example'] = array(
'title' => 'Batch example',
'description' => 'Example of Backdrop batch processing',
'page callback' => 'backdrop_get_form',
'page arguments' => array('batch_example_simple_form'),
'access callback' => TRUE,
);
return $items;
}