nextcloud/lib/ocs/config.php

14 lines
270 B
PHP
Raw Normal View History

2012-07-30 16:42:18 +04:00
<?php
class OC_OCS_Config {
public static function apiConfig($parameters){
$xml['version'] = '1.7';
$xml['website'] = 'ownCloud';
$xml['host'] = OCP\Util::getServerHost();
$xml['contact'] = '';
$xml['ssl'] = 'false';
return new OC_OCS_Result($xml);
2012-07-30 16:42:18 +04:00
}
}