You are here

function styleswitcher_theme in Style Switcher 7.2

Same name and namespace in other branches
  1. 8.2 styleswitcher.module \styleswitcher_theme()
  2. 6.2 styleswitcher.module \styleswitcher_theme()
  3. 3.0.x styleswitcher.module \styleswitcher_theme()

Implements hook_theme().

File

./styleswitcher.module, line 756
Module's hooks implementations and helper functions.

Code

function styleswitcher_theme() {
  return array(
    'styleswitcher_admin_styles_table' => array(
      'render element' => 'form',
      'file' => 'styleswitcher.admin.inc',
    ),
    'styleswitcher_admin_style_overview' => array(
      'variables' => array(
        'style' => NULL,
      ),
      'file' => 'styleswitcher.admin.inc',
    ),
  );
}