You are here

function uc_cart_theme in Ubercart 6.2

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

Implements hook_theme().

File

uc_cart/uc_cart.module, line 204

Code

function uc_cart_theme() {
  return array(
    'uc_cart_block_title' => array(
      'arguments' => array(
        'title' => NULL,
        'icon_class' => FALSE,
        'collapsible' => FALSE,
      ),
    ),
    'uc_cart_block_title_icon' => array(
      'arguments' => array(
        'icon_class' => NULL,
      ),
    ),
    'uc_cart_block_content_cachable' => array(
      'arguments' => array(),
    ),
    'uc_cart_block_content' => array(
      'arguments' => array(
        'help_text' => NULL,
        'items' => NULL,
        'item_count' => NULL,
        'item_text' => NULL,
        'total' => NULL,
        'summary_links' => NULL,
      ),
    ),
    'uc_cart_block_items' => array(
      'arguments' => array(
        'items' => NULL,
      ),
    ),
    'uc_cart_block_summary' => array(
      'arguments' => array(
        'item_count' => NULL,
        'item_text' => NULL,
        'total' => NULL,
        'summary_links' => NULL,
      ),
    ),
    'uc_empty_cart' => array(
      'arguments' => array(),
    ),
    'uc_cart_view_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_cart_view_price' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'address_pane' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'cart_review_table' => array(
      'arguments' => array(
        'show_subtotal' => TRUE,
      ),
    ),
    'uc_cart_checkout_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_cart.pages.inc',
    ),
    'uc_cart_checkout_review' => array(
      'arguments' => array(
        'panes' => NULL,
        'form' => NULL,
      ),
      'file' => 'uc_cart.pages.inc',
    ),
    'uc_checkout_pane_cart_review' => array(
      'arguments' => array(
        'items' => NULL,
      ),
      'file' => 'uc_cart_checkout_pane.inc',
    ),
    'uc_cart_complete_sale' => array(
      'arguments' => array(
        'message' => NULL,
        'order' => NULL,
      ),
    ),
  );
}