function configuration_ui_theme in Configuration Management 7.2
Implements hook_theme().
File
- ui/
configuration_ui.module, line 146 - User Interface for Configuration Management module.
Code
function configuration_ui_theme($existing, $type, $theme, $path) {
$base = array(
'path' => drupal_get_path('module', 'configuration_ui') . '/theme',
'file' => 'theme.inc',
);
$items = array();
$items['configuration_ui_form_buttons'] = array(
'render element' => 'element',
) + $base;
$items['configuration_table'] = array(
'render element' => 'form',
) + $base;
return $items;
}