friendica/mod/opensearch.php

21 lines
336 B
PHP
Raw Normal View History

2011-04-08 08:40:04 +00:00
<?php
use Friendica\App;
2017-08-26 06:04:21 +00:00
use Friendica\Core\System;
2017-04-30 04:01:26 +00:00
function opensearch_content(App $a) {
2017-04-30 04:01:26 +00:00
$tpl = get_markup_template('opensearch.tpl');
2017-04-30 04:01:26 +00:00
header("Content-type: application/opensearchdescription+xml");
$o = replace_macros($tpl, [
'$baseurl' => System::baseUrl(),
'$nodename' => $a->getHostName(),
]);
2017-04-30 04:01:26 +00:00
echo $o;
killme();
}