You are here

function data_ui_theme in Data 7

Same name and namespace in other branches
  1. 6 data_ui/data_ui.module \data_ui_theme()

Implements hook_theme().

File

data_ui/data_ui.module, line 238
Hooks and API functions for Data UI module.

Code

function data_ui_theme() {
  return array(
    'data_ui_edit_form' => array(
      'render element' => 'form',
    ),
    'data_ui_views_form' => array(
      'render element' => 'form',
    ),
    'data_ui_create_form' => array(
      'render element' => 'form',
    ),
    'data_ui_field_config_form' => array(
      'render element' => 'form',
    ),
    'data_ui_schema_compare_table' => array(
      'variables' => array(
        'comparison' => array(),
      ),
    ),
  );
}