function boost_permission in Boost 7
Implements hook_permissions().
File
- ./
boost.module, line 202 - Caches generated output as a static file to be served directly from the webserver.
Code
function boost_permission() {
return array(
'boost flush pages' => array(
'title' => t('Flush pages from Boost cache'),
'description' => t('Allow users to flush individual pages from the Boost cache using the Boost status block.'),
),
);
}