function sparkpost_permission in Sparkpost email 7.2
Same name and namespace in other branches
- 7 sparkpost.module \sparkpost_permission()
Implements hook_permission().
File
- ./
sparkpost.module, line 59 - Sparkpost integration.
Code
function sparkpost_permission() {
return array(
'administer sparkpost' => array(
'title' => t('Administer Sparkpost'),
'description' => t('Perform administration tasks for the Sparkpost email service.'),
"restrict access" => TRUE,
),
);
}