function imageblock_theme in Image Block 6
Same name and namespace in other branches
- 7 imageblock.module \imageblock_theme()
 
Implementation of hook_theme()
File
- ./
imageblock.module, line 12  - imageblock.module Primarily Drupal hooks.
 
Code
function imageblock_theme() {
  return array(
    'imageblock_block' => array(
      'arguments' => array(
        'block' => NULL,
      ),
      'template' => 'imageblock-block',
    ),
  );
}