You are here

function commerce_stock_local_theme in Commerce Stock 8

Implements hook_theme().

File

modules/local_storage/commerce_stock_local.module, line 165
Commerce Stock Local module.

Code

function commerce_stock_local_theme() {
  $theme = [];
  $theme['commerce_stock_location'] = [
    'render element' => 'elements',
  ];
  $theme['commerce_stock_location_content_add_list'] = [
    'render element' => 'content',
    'variables' => [
      'content' => NULL,
    ],
  ];
  return $theme;
}