You are here

function party_party_operations in Party 7

Same name and namespace in other branches
  1. 8.2 party.module \party_party_operations()

Implements hook_party_operations.

File

./party.party.inc, line 107
Party general hook include.

Code

function party_party_operations() {
  $operations = array(
    'merge' => array(
      'label' => t('Merge parties'),
      'callback' => 'party_party_operations_merge',
    ),
  );
  return $operations;
}