function bootstrap_site_alert_permission in Bootstrap Site Alert 7
Implements hook_permission().
File
- ./
bootstrap_site_alert.module, line 11 - The bootstrap_site_alert module file.
Code
function bootstrap_site_alert_permission() {
return array(
'administer bootstrap site alerts' => array(
'title' => t('Administer Bootstrap Site Alert'),
'description' => t('Administer Bootstrap Site Alert'),
),
'view bootstrap site alerts' => array(
'title' => t('View Bootstrap Site Alert'),
'description' => t('View Bootstrap Site Alert'),
),
);
}