You are here

function nodeblock_theme in Nodeblock 7

Implements hook_theme().

File

./nodeblock.module, line 23
Enables use of specified node types as custom blocks.

Code

function nodeblock_theme($existing, $type, $theme, $path) {
  return array(
    'node__nodeblock' => array(
      'render element' => 'elements',
      'template' => 'node--nodeblock',
    ),
  );
}