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

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

	$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();
}