mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
16 lines
376 B
PHP
16 lines
376 B
PHP
<?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();
|
|
}
|