You are here

function domain_content_domainlinks in Domain Access 7.2

Same name and namespace in other branches
  1. 6.2 domain_content/domain_content.module \domain_content_domainlinks()

Implements hook_domainlinks()

File

domain_content/domain_content.module, line 145
Editorial overview module.

Code

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