domain_get_path_match($path)Allow the lookup of path rewrites.
Note that unlinke domain_get_node_match(), this function assumes that all links will be written to the current domain.
$path The link path.
The domain array for the best matching domain for links to this node.
./domain.module, line 1220
<?php
function domain_get_path_match($path) {
global $_domain;
$source = $_domain;
drupal_alter('domain_source_path', $source, $path);
return $source;
}
?>