You are here

function styles_ui_theme in Styles 7

Same name and namespace in other branches
  1. 6.2 contrib/styles_ui/styles_ui.module \styles_ui_theme()
  2. 6 contrib/styles_ui/styles_ui.module \styles_ui_theme()

Implements hook_theme().

File

contrib/styles_ui/styles_ui.module, line 82
Allows administration of the Styles modules.

Code

function styles_ui_theme($existing, $type, $theme, $path) {
  return array(
    'styles_ui_admin_overview' => array(
      'variables' => array(
        'preset_name' => NULL,
      ),
      'file' => 'styles_ui.admin.inc',
    ),
  );
}