1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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(); } }