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