streams/mod/opensearch.php

19 lines
304 B
PHP
Raw Normal View History

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