You are here

function cf_settings_theme in Common Functionality 7.2

Implements hook_theme().

Related topics

File

modules/cf_settings/cf_settings.module, line 164
Common Functionality - PHP INI module.

Code

function cf_settings_theme($existing, $type, $theme, $path) {
  $themes = array();
  $themes['cf_settings_view_registry'] = array(
    'template' => 'cf_settings_view_registry',
    'variables' => array(),
    'path' => drupal_get_path('module', 'cf_settings') . '/templates',
  );
  return $themes;
}