You are here

function party_hat_permission in Party 7

Same name and namespace in other branches
  1. 8.2 modules/party_hat/party_hat.module \party_hat_permission()

Implements hook_permission().

File

modules/party_hat/party_hat.module, line 111
party_hat.module Provides an extensible access system for parties.

Code

function party_hat_permission() {
  return array(
    'administer hats' => array(
      'title' => t('Administer party hats'),
      'description' => t('TODO write me.'),
    ),
  );
}