You are here

function hosting_get_hostmaster_uri in Hosting 7.4

Load the URI of the hostmaster site.

Return value

string

File

./hosting.inc, line 124
General purpose Hosting module functions.

Code

function hosting_get_hostmaster_uri() {
  $hostmaster_site = node_load(hosting_get_hostmaster_nid());
  return $hostmaster_site->title;
}