You are here

function sna_blocks_theme in Simple Node Archive Blocks 7

Same name and namespace in other branches
  1. 6 sna_blocks.module \sna_blocks_theme()

Implements hook_theme().

File

./sna_blocks.module, line 129
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,
      ),
    ),
  );
}