function blockanimate_permission in BlockAnimate 7
Implements hook_permission().
File
- ./
blockanimate.module, line 30 - Add CSS3 cross-browser animation to any Drupal block.
Code
function blockanimate_permission() {
return array(
'administer block animate' => array(
'title' => t('Configure Block Animate animations.'),
'description' => t("Configure Animate CSS animations for website's blocks."),
),
);
}