2012-07-30 12:42:18 +00: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';
|
2012-12-12 17:35:58 +00:00
|
|
|
return new OC_OCS_Result($xml);
|
2012-07-30 12:42:18 +00:00
|
|
|
}
|
2012-12-12 18:06:07 +00:00
|
|
|
|
2012-07-30 12:42:18 +00:00
|
|
|
}
|