You are here

function hosting_site_get_domain in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 site/hosting_site.module \hosting_site_get_domain()

Allow other modules to alter the domain.

14 calls to hosting_site_get_domain()
drush_hosting_clone_pre_hosting_task in clone/hosting_clone.drush.inc
@file Drush include for the site cloning module.
drush_hosting_migrate_pre_hosting_task in migrate/hosting_migrate.drush.inc
@file Implement drush hooks for the hosting migrate module.
hosting_clone_post_hosting_clone_task in clone/hosting_clone.drush.inc
@todo Please document this function.
hosting_hosting_site_context_options in site/hosting_site.drush.inc
Implements hook_hosting_TASK_OBJECT_context_options().
hosting_migrate_platform_batch in migrate/hosting_migrate.batch.inc
Batch comparison of site packages between platforms to determine if the site can be migrated to the target platform or not.

... See full list

File

site/hosting_site.module, line 1093
Contains hook implementations for Hosting site module.

Code

function hosting_site_get_domain($domain) {
  drupal_alter('hosting_site_domain', $domain);
  return $domain;
}