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


                         

                                               
                         
                                                  





                                                                                   
         
 
 
 
<?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\Project\System::get_platform_name(),
			'$baseurl' => z_root(),
			'$apipath' => z_root() . '/api/'
		));
		killme();
	}

}