function domain_theme_domainlinks in Domain Access 5
Same name and namespace in other branches
- 6.2 domain_theme/domain_theme.module \domain_theme_domainlinks()
- 7.2 domain_theme/domain_theme.module \domain_theme_domainlinks()
Implement hook_domainlinks()
File
- domain_theme/
domain_theme.module, line 170 - Domain Theme module for the Domain Access module group.
Code
function domain_theme_domainlinks($domain) {
$links[] = array(
'title' => t('theme'),
'path' => 'admin/build/domain/theme/' . $domain['domain_id'],
);
return $links;
}