You are here

function configuration_theme in Configuration Management 7

Implements hook_theme().

File

./configuration.module, line 223
Module file for the configuration module, which enables the capture and management of configuration in Drupal.

Code

function configuration_theme($existing, $type, $theme, $path) {
  $base = array(
    'path' => drupal_get_path('module', 'configuration') . '/theme',
    'file' => 'theme.inc',
  );
  $items = array();
  $items['configuration_form_buttons'] = array(
    'render element' => 'element',
  ) + $base;
  return $items;
}