aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Opensearch.php
blob: 8e76038c90086efe0f99c36e99a8338660a9170b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
namespace Zotlabs\Module;


class Opensearch extends \Zotlabs\Web\Controller {

	function init() {
	    	
		$tpl = get_markup_template('opensearch.tpl');
		
		header("Content-type: application/opensearchdescription+xml");
		
		$o = replace_macros($tpl, array(
			'$baseurl'  => z_root(),
			'$nodename' => \App::get_hostname(),
		));
			
		echo $o;
			
		killme();
			
	}
	
}