function commerce_backoffice_order_theme in Commerce Backoffice 7
Implements hook_theme().
File
- ./
commerce_backoffice_order.module, line 85
Code
function commerce_backoffice_order_theme(&$existing) {
$themes = array(
'commerce_order__backoffice' => array(
'path' => drupal_get_path('module', 'commerce_backoffice_order') . '/theme',
'template' => 'commerce-order--backoffice',
),
);
return $themes;
}