You are here

function uc_store_theme in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_store/uc_store.module \uc_store_theme()
  2. 6.2 uc_store/uc_store.module \uc_store_theme()

Implements hook_theme().

File

uc_store/uc_store.module, line 556
Contains global Ubercart functions and store administration functionality.

Code

function uc_store_theme() {
  return array(
    'uc_store_footer' => array(
      'variables' => array(
        'message' => '',
      ),
      'file' => 'uc_store.theme.inc',
    ),
    'uc_store_address_fields_form' => array(
      'render element' => 'form',
      'file' => 'uc_store.admin.inc',
    ),
    'uc_pane_sort_table' => array(
      'render element' => 'form',
      'file' => 'uc_store.theme.inc',
    ),
    'tapir_table' => array(
      'render element' => 'element',
    ),
    'uc_price' => array(
      'variables' => array(
        'price' => 0,
        'suffixes' => array(),
      ),
      'file' => 'uc_store.theme.inc',
    ),
    'uc_qty_label' => array(
      'variables' => array(),
      'file' => 'uc_store.theme.inc',
    ),
    'uc_qty' => array(
      'variables' => array(
        'qty' => 1,
      ),
      'file' => 'uc_store.theme.inc',
    ),
    'uc_uid' => array(
      'variables' => array(
        'uid' => 0,
      ),
      'file' => 'uc_store.theme.inc',
    ),
  );
}