You are here

function field_group_multiple_theme in Field group multiple 7.x

Same name and namespace in other branches
  1. 7 field_group_multiple.module \field_group_multiple_theme()

Implements hook_theme().

File

./field_group_multiple.module, line 9

Code

function field_group_multiple_theme() {
  $path = drupal_get_path('module', FIELD_GROUP_MULTIPLE);
  return array(
    'field_group_multiple_table_form' => array(
      'render element' => 'elements',
      'file' => 'theme.inc',
    ),
    'field_group_multiple_container_form' => array(
      'render element' => 'elements',
      'file' => 'theme.inc',
    ),
    'field_group_multiple_label_value_form' => array(
      'render element' => 'elements',
      'file' => 'theme.inc',
    ),
    'field_group_multiple_container' => array(
      'variables' => array(
        'group' => NULL,
        'items' => array(),
        'fields' => array(),
      ),
      'template' => 'field-group-multiple-container',
      'pattern' => 'field-group-multiple-container__',
      'path' => $path,
      'file' => 'theme.inc',
    ),
    'field_group_multiple_label_value' => array(
      'variables' => array(
        'group' => NULL,
        'items' => array(),
        'fields' => array(),
      ),
      'template' => 'field-group-multiple-label-value',
      'pattern' => 'field-group-multiple-label-value__',
      'path' => $path,
      'file' => 'theme.inc',
    ),
    'field_group_multiple_table' => array(
      'variables' => array(
        'group' => NULL,
        'items' => array(),
        'fields' => array(),
      ),
      'template' => 'field-group-multiple-table',
      'pattern' => 'field-group-multiple-table__',
      'path' => $path,
      'file' => 'theme.inc',
    ),
  );
}