domain_domaininstall

Definition

domain_domaininstall()
domain.module, line 1231

Description

Implements hook_domaininstall()

Code

function domain_domaininstall() {
  // Check to see if the hook_url_alter() patch is installed.
  if (url('domain_access_test_path') != url('domain_access_path_test')) {
    drupal_set_message(t('The <em>custom_url_rewrite_outbound()</em> patch is not installed.  Some features are not available. See the Patches to Drupal Core section of <a href="!url">INSTALL.txt</a>', array('!url' => base_path() . drupal_get_path('module', 'domain') .'/INSTALL.txt')));
  }
}