You are here

function styleswitcher_theme in Style Switcher 6.2

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

Implements hook_theme().

File

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

Code

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