aboutsummaryrefslogtreecommitdiffstats
path: root/mod/hostxrd.php
blob: 24bd7b0489a9044abdfaa0fc3d89eea1e531dc67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

function hostxrd_init(&$a) {
	header('Access-Control-Allow-Origin: *');
	header("Content-type: text/xml");
	logger('hostxrd',LOGGER_DEBUG);

	$tpl = get_markup_template('xrd_host.tpl');
	$x = replace_macros(get_markup_template('xrd_host.tpl'), array(
		'$zhost' => $a->get_hostname(),
		'$zroot' => z_root()
	));
	$arr = array('xrd' => $x);
	call_hooks('hostxrd',$arr);
	echo $arr['xrd'];
	killme();
}