You are here

function uc_attribute_product_access in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_attribute/uc_attribute.module \uc_attribute_product_access()
  2. 7.3 uc_attribute/uc_attribute.module \uc_attribute_product_access()

Access callback for editing a product's attributes.

1 string reference to 'uc_attribute_product_access'
uc_attribute_menu in uc_attribute/uc_attribute.module
Implements hook_menu().

File

uc_attribute/uc_attribute.module, line 236

Code

function uc_attribute_product_access($node) {
  if ($node->type == 'product_kit') {
    return FALSE;
  }
  return uc_product_is_product($node) && node_access('update', $node) && (user_access('administer attributes') || user_access('administer product attributes'));
}