You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
365 B
17 lines
365 B
<?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','addon/twitter_api'),array( |
|
'$project' => \Zotlabs\Lib\System::get_platform_name(), |
|
'$baseurl' => z_root(), |
|
'$apipath' => z_root() . '/api/' |
|
)); |
|
killme(); |
|
} |
|
|
|
} |
|
|
|
|