You are here

function commerce_backoffice_order_admin_paths in Commerce Backoffice 7

Implements hook_admin_paths().

File

./commerce_backoffice_order.module, line 34

Code

function commerce_backoffice_order_admin_paths() {

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