mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
17 lines
349 B
PHP
17 lines
349 B
PHP
<?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();
|
|
}
|
|
|
|
}
|
|
|