function andromeda_slideshow_permission in Andromeda Slideshow 7.2
Same name and namespace in other branches
- 7 andromeda_slideshow.module \andromeda_slideshow_permission()
Implements hook_permission().
File
- ./
andromeda_slideshow.module, line 134 - Slideshow for the Andromeda (http://drupal.org/project/andromeda) Theme
Code
function andromeda_slideshow_permission() {
return array(
'manage slideshows' => array(
'title' => t('Manage Slideshows'),
'description' => t('Create, enable and disable slideshows.'),
),
);
}