You are here

function cron_debug_permission in Cron Debug 7

Implements hook_perm().

File

./cron_debug.module, line 18
Cron debugging for administrators.

Code

function cron_debug_permission() {
  return array(
    'run cron debug' => array(
      'title' => t('Run Cron Debug'),
      'description' => t('Allow user to execute Cron Debug.'),
    ),
  );
}