You are here

function archive_theme in Archive 7.2

Same name and namespace in other branches
  1. 6 archive.module \archive_theme()
  2. 7 archive.module \archive_theme()

Implementation of hook_theme().

File

./archive.module, line 62
Implements a block and page showing an archive of all site content.

Code

function archive_theme() {
  return array(
    'archive_block_calendar' => array(
      'variables' => array(
        'timestamp' => 0,
      ),
    ),
    'archive_page_title' => array(
      'variables' => array(
        'type' => '',
        'year' => NULL,
        'month' => NULL,
        'day' => NULL,
      ),
    ),
    'archive_navigation' => array(
      'variables' => array(
        'type' => '',
        'date' => NULL,
      ),
    ),
    'archive_navigation_days' => array(
      'variables' => array(
        'type' => '',
        'date' => NULL,
      ),
    ),
    'archive_navigation_months' => array(
      'variables' => array(
        'type' => '',
        'date' => NULL,
      ),
    ),
    'archive_navigation_node_types' => array(
      'variables' => array(
        'type' => '',
        'date' => NULL,
      ),
    ),
    'archive_navigation_years' => array(
      'variables' => array(
        'type' => '',
        'date' => NULL,
      ),
    ),
    'archive_separator' => array(
      'variables' => array(
        'date_created' => 0,
        'separators' => array(),
      ),
    ),
  );
}