domain_theme_domainlinks

Definition

domain_theme_domainlinks($domain)
domain_theme/domain_theme.module, line 163

Description

Implements hook_domainlinks()

Code

function domain_theme_domainlinks($domain) {
  $links[] = array(
    'title' => t('theme'),
    'path' => 'admin/build/domain/theme/'. $domain['domain_id']
  );
  return $links;
}