function registration_theme in Entity Registration 7
Same name and namespace in other branches
- 8.2 registration.module \registration_theme()
- 8 registration.module \registration_theme()
- 7.2 registration.module \registration_theme()
Implements hook_theme().
File
- ./
registration.module, line 995
Code
function registration_theme() {
return array(
'registration_link' => array(
'variables' => array(
'label' => NULL,
'path' => 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' => '',
),
),
);
}