You are here

function hook_domain_nav in Domain Access 7.3

Enables modules to add additional parameters to the $domain array for use by the Domain Navigation module.

Used in cases where custom themes may require extra parameters. This hook is called by domain_nav_render().

Parameters

$domain: The information for the current domain record, taken from {domain}.

Default parameters should not be changed; these are:

  • domain_id -- the unique identifier of this domain
  • subdomain -- the host path of the url for this domain
  • sitename -- the human-readable name of this domain
  • path -- the link path (a Drupal-formatted path)
  • active -- a boolean flag indicating the currently active domain

Related topics

1 function implements hook_domain_nav()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

domain_alias_domain_nav in domain_alias/domain_alias.domain.inc
Implements hook_domain_nav().
1 invocation of hook_domain_nav()
domain_nav_render in domain_nav/domain_nav.module
Renders output for the block.

File

./domain.api.php, line 122
API documentation file.

Code

function hook_domain_nav($domain) {
  $extra = array();
  $extra['test'] = 'test';
  return $extra;
}