You are here

function domain_nav_theme in Domain Access 7.3

Same name and namespace in other branches
  1. 6.2 domain_nav/domain_nav.module \domain_nav_theme()
  2. 7.2 domain_nav/domain_nav.module \domain_nav_theme()

Implements hook_theme()

4 string references to 'domain_nav_theme'
domain_nav_block_configure in domain_nav/domain_nav.module
Implements hook_block_configure().
domain_nav_block_save in domain_nav/domain_nav.module
Implements hook_block_save().
domain_nav_render in domain_nav/domain_nav.module
Renders output for the block.
domain_nav_uninstall in domain_nav/domain_nav.install
Implements hook_uninstall().

File

domain_nav/domain_nav.module, line 87
Navigation block and menu options for Domain Access

Code

function domain_nav_theme() {
  $themes = array(
    'domain_nav_default' => array(
      'variables' => array(
        'options' => array(),
      ),
    ),
    'domain_nav_ul' => array(
      'variables' => array(
        'options' => array(),
      ),
    ),
    'domain_nav_menus' => array(
      'variables' => array(
        'options' => array(),
      ),
    ),
  );
  return $themes;
}