function borealis_ri_permission in Borealis 7.2
Same name and namespace in other branches
- 7 borealis_ri/borealis_ri.module \borealis_ri_permission()
Implements hook_permission
File
- borealis_ri/
borealis_ri.module, line 6
Code
function borealis_ri_permission() {
return array(
'administer responsive image styles' => array(
'title' => t('Choose Responsive Image Styles'),
'description' => t('Choose which image styles to be responsive.'),
),
'administer responsive image settings' => array(
'title' => t('Administer Responsive Image Settings'),
'description' => t('Administer the responsive image settings. Settings apply to all responsive image styles.'),
),
);
}