function rotor_node_info in Rotor Banner 6
Same name and namespace in other branches
- 5.7 rotor.module \rotor_node_info()
 - 5 rotor.module \rotor_node_info()
 - 6.2 rotor.module \rotor_node_info()
 - 7 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."),
    ),
  );
}