function acquia_purge_permission in Acquia Purge 7
Implements hook_permission().
File
- ./
acquia_purge.module, line 79 - Acquia Purge, Top-notch Varnish purging on Acquia Cloud!
Code
function acquia_purge_permission() {
return array(
'purge on-screen' => array(
'title' => t('Purge on-screen'),
'description' => t('Allow user to see purges as they are processed. Includes text and a progress bar.'),
),
'use manual purge blocks' => array(
'title' => t('Use manual purge blocks'),
'description' => t('Allows editors to utilize the "Manual purge form (current page)" and "Manual purge form (paths)" blocks.'),
),
);
}