You are here

function uc_store_theme in Ubercart 6.2

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

Implements hook_theme().

File

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

Code

function uc_store_theme() {
  return array(
    'uc_admin_dashboard' => array(
      'arguments' => array(
        'type' => NULL,
        'menus' => NULL,
      ),
    ),
    'uc_store_footer' => array(
      'arguments' => array(
        'message' => '',
      ),
    ),
    'uc_store_address_fields_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_pane_sort_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'tapir_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_price_settings_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'summary_overview' => array(
      'arguments' => array(),
    ),
    'uc_price' => array(
      'arguments' => array(
        'value' => 0,
        'context' => array(),
        'options' => array(),
      ),
    ),
  );
}