function css3pie_permission in css3pie 7.2
Implements hook_permission() only users with "administer css3pie" permission can edit the settings form.
Return value
<array> permissions array
See also
File
- ./
css3pie.module, line 23 - css3pie.module a very simple Drupal module to implement the css3pie.com javascript to your drupal and make the css selectors configurable over ui. This module creates a real css file on drupal files folder and add them via drupal_add_css.
Code
function css3pie_permission() {
return array(
'administer css3pie' => array(
'title' => t('Administer CSS3PIE selectors'),
'description' => t('user can change the used css3pie selectors'),
),
);
}