You are here

function _domain_path_modules in Domain Access 7.3

Same name and namespace in other branches
  1. 6.2 domain.module \_domain_path_modules()
  2. 7.2 domain.module \_domain_path_modules()

Helper function for domain_path() checks.

3 calls to _domain_path_modules()
domain_get_uri in ./domain.module
Determine an absolute path to the current page.
domain_path in ./domain.module
Helper function for passing hook_domainpath() by reference.
domain_url_outbound_alter in ./settings_custom_url.inc
Implements hook_url_outbound_alter().

File

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

Code

function _domain_path_modules() {
  $modules =& drupal_static(__FUNCTION__);
  if (!isset($modules)) {
    $modules = module_implements('domain_path');
  }
  return $modules;
}