function live_css_permission in Live CSS 8.2
Same name and namespace in other branches
- 8 live_css.module \live_css_permission()
- 7.2 live_css.module \live_css_permission()
- 7 live_css.module \live_css_permission()
Implements hook_permission().
File
- ./
live_css.module, line 19
Code
function live_css_permission() {
return array(
'edit css' => array(
'title' => t('View, edit and save CSS'),
'description' => t('View, edit and save CSS with the live editor. Without this the editor will not load.'),
),
);
}