You are here

function footermap_theme in footermap: a footer site map 7

Same name and namespace in other branches
  1. 8 footermap.module \footermap_theme()

Implementation of hook_theme

File

./footermap.module, line 51

Code

function footermap_theme($existing, $type, $theme, $path) {
  return array(
    'footermap' => array(
      'variables' => array(
        'footermap' => NULL,
        'title' => NULL,
        'cached' => NULL,
      ),
      'file' => 'footermap.theme.inc',
      'template' => 'footermap',
    ),
    'footermap_item' => array(
      'variables' => array(
        'href' => NULL,
        'title' => NULL,
        'options' => NULL,
        'level' => NULL,
        'children' => NULL,
        'attributes' => NULL,
      ),
      'file' => 'footermap.theme.inc',
    ),
    'footermap_header' => array(
      'variables' => array(
        'title' => NULL,
        'items' => NULL,
        'attributes' => NULL,
      ),
      'file' => 'footermap.theme.inc',
    ),
  );
}