You are here

function registration_theme in Entity Registration 7.2

Same name and namespace in other branches
  1. 8.2 registration.module \registration_theme()
  2. 8 registration.module \registration_theme()
  3. 7 registration.module \registration_theme()

Implements hook_theme().

File

./registration.module, line 972

Code

function registration_theme() {
  return array(
    'registration_link' => array(
      'variables' => array(
        'label' => NULL,
        'path' => NULL,
      ),
    ),
    'registration_registrant_link' => array(
      'variables' => array(
        'registrant' => NULL,
      ),
    ),
    'registration_state_overview_form' => array(
      'file' => 'includes/registration.forms.inc',
      'render element' => 'form',
    ),
    'registration_property_field' => array(
      'variables' => array(
        'label_hidden' => FALSE,
        'title_attributes' => NULL,
        'label' => '',
        'content_attributes' => NULL,
        'items' => array(),
        'item_attributes' => array(
          0 => '',
        ),
        'classes' => '',
        'attributes' => '',
      ),
    ),
  );
}