You are here

function drafty_permission in Drafty 7

Implements hook_permission().

File

./drafty.module, line 29
Hook implementations and API functions for the Drafty module.

Code

function drafty_permission() {
  return array(
    'administer drafty' => array(
      'title' => t('Administer Drafty'),
    ),
  );
}