domain_conf_init()Implement hook_init()
domain_conf/domain_conf.module, line 62
<?php
function domain_conf_init() {
// Allow sites to add implementations of hook_domainconf() without hacking.
// See http://drupal.org/node/236877.
if (arg(0) == 'admin') {
$extra = drupal_get_path('module', 'domain_conf') .'/domain_conf.inc';
if (file_exists($extra)) {
include $extra;
}
}
}
?>