You are here

function shurly_permission in ShURLy 7

Implements hook_permission().

File

./shurly.module, line 104
description http://www.youtube.com/watch?v=Qo7qoonzTCE

Code

function shurly_permission() {
  return array(
    'Create short URLs' => array(
      'title' => t('Create short URLs'),
    ),
    'Enter custom URLs' => array(
      'title' => t('Enter custom URLs'),
    ),
    'View own URL stats' => array(
      'title' => t('View own URL stats'),
    ),
    'Edit all URLs' => array(
      'title' => t('Edit all URLs'),
    ),
    'Edit own URLs' => array(
      'title' => t('Edit own URLs'),
    ),
    'Delete own URLs' => array(
      'title' => t('Delete own URLs'),
    ),
    'Administer short URLs' => array(
      'title' => t('Administer short URLs'),
    ),
  );
}