function mob_queue_permission in Drush Queue Handling 7
Implements hook_permission().
File
- ./
mob_queue.module, line 63 - Module for the cron queue management - a small yet powerful queue tool
Code
function mob_queue_permission() {
return array(
'administer mob_queue' => array(
'title' => t('Administer Drush Queue Handling'),
'description' => t('Configure drush queue handling settings.'),
),
);
}