You are here

function party_hat_hook_info in Party 7

Implements hook_hook_info().

See also

party_hook_info().

File

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

Code

function party_hat_hook_info() {

  // General hooks that are called frequently on operations or page builds.
  $hooks['party_hat_assign_hats'] = array(
    'group' => 'party',
  );
  $hooks['party_hat_unassign_hats'] = array(
    'group' => 'party',
  );
}