You are here

function nodesinblock_theme in Nodes In Block 6

Same name and namespace in other branches
  1. 7 nodesinblock.module \nodesinblock_theme()

Implementation of hook_theme().

File

./nodesinblock.module, line 23
Nodes in block makes it possible to add multiple nodes in one block.

Code

function nodesinblock_theme() {
  return array(
    'nodesinblock_queue' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}