You are here

function party_admin_paths in Party 7

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

Implements hook_admin_paths().

File

./party.module, line 530
Provides a generic CRM party entity.

Code

function party_admin_paths() {
  $paths = array(
    'party/*/*/edit/*' => TRUE,
    'party/*/*/remove/*' => TRUE,
    'party/*/*/add' => TRUE,
  );
  return $paths;
}