You are here

function data_ui_theme in Data 6

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

Implementation of hook_theme()

File

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

Code

function data_ui_theme() {
  return array(
    'data_ui_edit_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
    ),
    'data_ui_views_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
    ),
    'data_ui_create_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
    ),
    'data_ui_schema_compare_table' => array(
      'arguments' => array(
        'comparison' => array(),
      ),
    ),
  );
}