You are here

function uc_stock_admin_paths in Ubercart 7.3

Implements hook_admin_paths().

File

uc_stock/uc_stock.module, line 67
Allow ubercart products to have stock levels associated with their SKU

Code

function uc_stock_admin_paths() {
  $paths = array(
    'node/*/edit/stock' => TRUE,
  );
  return $paths;
}