hook_domainnav($domain)
API.php, line 184
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().
Default parameters should not be changed; these are:
| Name | Description |
|---|---|
| Domain hook functions | Core hooks for the Domain module suite. |
function hook_domainnav($domain) {
$extra = array();
$extra['test'] = 'test';
return $extra;
}