function css3pie_perm in css3pie 6
Implements hook_perm() only users with "administer css3pie" permission can edit the settings form.
Return value
<array> permissions array
See also
hook_perm();
File
- ./
css3pie.module, line 18 - 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_perm() {
return array(
'administer css3pie',
);
}