You are here

function uc_order_theme in Ubercart 6.2

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

Implements hook_theme().

File

uc_order/uc_order.module, line 376

Code

function uc_order_theme() {
  return array(
    'uc_order' => array(
      'template' => 'uc_order',
      'path' => drupal_get_path('module', 'uc_order') . '/templates',
      'arguments' => array(
        'order' => NULL,
        'op' => 'view',
        'template' => 'customer',
        'thank_you_message' => FALSE,
        'help_text' => FALSE,
        'email_text' => FALSE,
        'store_footer' => FALSE,
        'business_header' => FALSE,
        'shipping_method' => FALSE,
      ),
    ),
    'uc_order_state_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_order_status_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'uc_order_edit_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_order.admin.inc',
    ),
    'uc_order_edit_products_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_order.admin.inc',
    ),
    'uc_order_remove_product' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'uc_order.admin.inc',
    ),
    'uc_order_view_update_controls' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}