You are here

function styleswitcher_block_info in Style Switcher 7

Same name and namespace in other branches
  1. 6.2 styleswitcher.module \styleswitcher_block_info()
  2. 7.2 styleswitcher.module \styleswitcher_block_info()

Implements hook_block_info().

File

./styleswitcher.module, line 11
Framework for themes to easily add stylesheet switching functionality.

Code

function styleswitcher_block_info() {
  $blocks['styleswitcher'] = array(
    'info' => t('Style Switcher'),
    'cache' => DRUPAL_NO_CACHE,
  );
  return $blocks;
}