You are here

function rotor_theme in Rotor Banner 6

Same name and namespace in other branches
  1. 6.2 rotor.module \rotor_theme()
  2. 7 rotor.module \rotor_theme()

Implementation of hook_theme().

File

./rotor.module, line 454
A rotor banner consists in a set of images that will be changing. This module is made using jquery.

Code

function rotor_theme() {
  $functions = array(
    'rotor_tabs' => array(
      'arguments' => array(
        'items' => array(),
      ),
    ),
    'rotor_block' => array(
      'arguments' => array(
        'items' => array(),
      ),
    ),
    'rotor_items' => array(
      'arguments' => array(
        'items' => array(),
      ),
    ),
    'rotor_item' => array(
      'arguments' => array(
        'item' => NULL,
      ),
    ),
    'rotor_admin_list' => array(
      'arguments' => array(
        'list' => array(),
      ),
    ),
    'rotor_image' => array(
      'arguments' => array(
        'rotor_image' => NULL,
      ),
    ),
  );
  return $functions;
}