friendica/mod/opensearch.php

18 lines
311 B
PHP
Raw Normal View History

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