7.x-3.x hosting.module | hosting_queues($key = '') |
List queues or tasks in a queue if a key is provided.
See also
4 string references to 'hosting_queues'
- hosting_block_info in ./
hosting.module - Implements hook_block_info().
- hosting_block_view in ./
hosting.module - Implements hook_block_view().
- hosting_menu in ./
hosting.module - Implements hook_menu().
- hosting_update_6001 in ./
hosting.install - Implements hook_update_N().
File
- ./
hosting.module, line 777 - Hosting module.
Code
function hosting_queues($key = '') {
$queues = hosting_get_queues();
$output = '';
if ($queues[$key]) {
if ($queues[$key]['name']) {
$output .= "<h1>" . $queues[$key]['name'] . "</h1>";
}
$func = 'hosting_' . $queues[$key]['singular'] . '_list';
if (function_exists($func)) {
$output .= $func();
}
}
else {
foreach ($queues as $key => $queue) {
$item[] = l($queue['name'], 'hosting/queues/' . $key);
}
$output .= theme('item_list', array('items' => $item, 'title' => t('Queues')));
}
return $output;
}