You are here

function domain_title in Domain Access 7.3

Set the title of a menu callback for domain edits.

Parameters

$domain: The domain array.

Return value

A title string.

1 string reference to 'domain_title'
domain_menu in ./domain.module
Implements hook_menu().

File

./domain.module, line 322
Core module functions for the Domain Access suite.

Code

function domain_title($domain) {
  return $domain['subdomain'];
}