function sna_blocks_theme in Simple Node Archive Blocks 6
Same name and namespace in other branches
- 7 sna_blocks.module \sna_blocks_theme()
Implements hook_theme().
File
- ./
sna_blocks.module, line 119 - Provide a simple node archive block
Code
function sna_blocks_theme() {
return array(
'sna_blocks_node' => array(
'variables' => array(
'value' => NULL,
'archive_items' => NULL,
'year' => NULL,
'month' => NULL,
),
),
'sna_blocks_taxonomy' => array(
'variables' => array(
'value' => NULL,
'archive_items' => NULL,
'year' => NULL,
'month' => NULL,
),
),
);
}