aboutsummaryrefslogblamecommitdiffstats
path: root/mod/hostxrd.php
blob: 0e19d8af65eefaec21f86a6a12c600ea0d93c58e (plain) (tree)
1
2
3
4
5
6
7
8
9
     
 
                            
                                                 
                                                    
                                       
 
                                                   
                                                                       
                                                
                                    
           

                                   
 

                         
 
<?php

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

	$tpl = get_markup_template('xrd_host.tpl');
	$x = replace_macros(get_markup_template('xrd_host.tpl'), array(
		'$zhost' => App::get_hostname(),
		'$zroot' => z_root()
	));
	$arr = array('xrd' => $x);
	call_hooks('hostxrd',$arr);

	echo $arr['xrd'];
	killme();
}