You are here

function redhen_admin_paths in RedHen CRM 7

Implements hook_admin_paths().

File

./redhen.module, line 90
Defines basic functionality common to all parts of the Redhen CRM.

Code

function redhen_admin_paths() {

  // Set RedHen admin paths based on configuration.
  if (variable_get('redhen_admin_path', FALSE)) {
    $paths = array(
      'redhen' => TRUE,
      'redhen/*' => TRUE,
    );
    return $paths;
  }
}