You are here

function uc_attribute_admin_paths in Ubercart 7.3

Implements hook_admin_paths().

File

uc_attribute/uc_attribute.module, line 187
Ubercart Attribute module.

Code

function uc_attribute_admin_paths() {
  $paths = array(
    'node/*/edit/attributes' => TRUE,
    'node/*/edit/attributes/add' => TRUE,
    'node/*/edit/options' => TRUE,
    'node/*/edit/adjustments' => TRUE,
  );
  return $paths;
}