function headerimage_theme in Header image 6
Same name and namespace in other branches
- 7 headerimage.module \headerimage_theme()
 
Implementation of hook_theme()
File
- ./
headerimage.module, line 675  - headerimage.module Conditionally display an node in a block.
 
Code
function headerimage_theme() {
  return array(
    'headerimage_block' => array(
      'template' => 'headerimage-block',
      'arguments' => array(
        'node' => NULL,
        'teaser' => NULL,
      ),
    ),
  );
}