queue_example_theme
Drupal 7 queue_example_theme()
Implements hook_theme().
Related topics
File
- sites/
all/ modules/ examples/ queue_example/ queue_example.module, line 276 - Examples demonstrating the Drupal Queue API.
Code
function queue_example_theme() {
return array(
'queue_items' => array(
'variables' => array('items' => NULL),
),
);
}

