You are here

function commerce_backoffice_product_admin_paths in Commerce Backoffice 7

Implements hook_admin_paths().

File

./commerce_backoffice_product.module, line 99

Code

function commerce_backoffice_product_admin_paths() {

  // The variations view should use the admin theme.
  $paths = array(
    'commerce_backoffice/variations/*' => TRUE,
  );
  return $paths;
}