add opensearch support
This commit is contained in:
parent
e35a5bac55
commit
1713ffb41c
3 changed files with 35 additions and 0 deletions
18
mod/opensearch.php
Normal file
18
mod/opensearch.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
function opensearch_content(&$a) {
|
||||
|
||||
$tpl = load_view_file('view/opensearch.tpl');
|
||||
|
||||
header("Content-type: application/opensearchdescription+xml");
|
||||
|
||||
$o = replace_macros($tpl, array(
|
||||
'$baseurl' => $a->get_baseurl(),
|
||||
'$nodename' => $a->get_hostname(),
|
||||
));
|
||||
|
||||
echo $o;
|
||||
|
||||
killme();
|
||||
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue