You are here

function splashify_permission in Splashify 7

Implements hook_permission().

File

./splashify.module, line 91

Code

function splashify_permission() {
  return array(
    'access splashify admin' => array(
      'title' => t('Administer Splashify'),
      'description' => t('Access the admin area for the splashify module.'),
    ),
  );
}