2011-04-08 10:40:04 +02:00
|
|
|
<?php
|
2017-01-09 13:14:25 +01:00
|
|
|
function opensearch_content(App $a) {
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('opensearch.tpl');
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2011-04-08 10:40:04 +02:00
|
|
|
header("Content-type: application/opensearchdescription+xml");
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2011-04-08 10:40:04 +02:00
|
|
|
$o = replace_macros($tpl, array(
|
2016-12-19 14:26:13 +01:00
|
|
|
'$baseurl' => App::get_baseurl(),
|
2011-04-08 10:40:04 +02:00
|
|
|
'$nodename' => $a->get_hostname(),
|
|
|
|
));
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2011-04-08 10:40:04 +02:00
|
|
|
echo $o;
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2011-04-08 10:40:04 +02:00
|
|
|
killme();
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2011-04-08 10:40:04 +02:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
?>
|