aboutsummaryrefslogblamecommitdiffstats
path: root/Zotlabs/Module/Rsd_xml.php
blob: e5059834bbfd08d9877ae230e27c64b87bade22d (plain) (tree)
1
2
3
4
5
6
7
8
9


                         

                                               
                         
                                                  
                                                                         
                                                                               



                                                        
         
 
 
 
<?php
namespace Zotlabs\Module;

class Rsd_xml extends \Zotlabs\Web\Controller {

	function init() {
		header ("Content-Type: text/xml");
		echo replace_macros(get_markup_template('rsd.tpl'),array(
			'$project' => \Zotlabs\Lib\System::get_platform_name(),
			'$baseurl' => z_root(),
			'$apipath' => z_root() . '/api/'
		));
		killme();
	}

}