You are here

function rotor_node_info in Rotor Banner 7

Same name and namespace in other branches
  1. 5.7 rotor.module \rotor_node_info()
  2. 5 rotor.module \rotor_node_info()
  3. 6.2 rotor.module \rotor_node_info()
  4. 6 rotor.module \rotor_node_info()

Implementation of hook_info().

File

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

Code

function rotor_node_info() {
  return array(
    'rotor_item' => array(
      'name' => t('Rotor item'),
      'module' => 'rotor',
      'description' => t("A node to be presented in the rotor block."),
    ),
  );
}