You are here

function commerce_backoffice_product_views_pre_render in Commerce Backoffice 7

Implement hook_views_pre_render().

File

./commerce_backoffice_product.module, line 304

Code

function commerce_backoffice_product_views_pre_render(&$view) {
  if (in_array($view->name, array(
    'commerce_backoffice_products',
    'commerce_backoffice_all_product_variations',
  ))) {
    drupal_add_css(drupal_get_path('module', 'commerce_backoffice_product') . '/theme/commerce-backoffice-products.css');
  }
}