summaryrefslogtreecommitdiffstats
path: root/lib/ocsclient.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:22:01 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2012-09-07 15:22:01 +0200
commit3829460ab8cbb6de65c53583a20fd04cbe7927dd (patch)
tree4dc24845a5eb31b17510a621e14c15b51f16bf7b /lib/ocsclient.php
parent785aa751bb5f9a4bcdd677b96207550482e17d3c (diff)
downloadnextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.tar.gz
nextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.zip
adding space between) and {
Diffstat (limited to 'lib/ocsclient.php')
-rw-r--r--lib/ocsclient.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/ocsclient.php b/lib/ocsclient.php
index dde2545858d..8596ea0b3c7 100644
--- a/lib/ocsclient.php
+++ b/lib/ocsclient.php
@@ -34,7 +34,7 @@ class OC_OCSClient{
*
* This function returns the url of the OCS AppStore server. It´s possible to set it in the config file or it will fallback to the default
*/
- private static function getAppStoreURL(){
+ private static function getAppStoreURL() {
$url = OC_Config::getValue('appstoreurl', 'http://api.apps.owncloud.com/v1');
return($url);
}
@@ -44,7 +44,7 @@ class OC_OCSClient{
* @returns string of the KB server
* This function returns the url of the OCS knowledge base server. It´s possible to set it in the config file or it will fallback to the default
*/
- private static function getKBURL(){
+ private static function getKBURL() {
$url = OC_Config::getValue('knowledgebaseurl', 'http://api.apps.owncloud.com/v1');
return($url);
}
@@ -56,14 +56,14 @@ class OC_OCSClient{
*
* This function returns a list of all the application categories on the OCS server
*/
- public static function getCategories(){
- if(OC_Config::getValue('appstoreenabled', true)==false){
+ public static function getCategories() {
+ if(OC_Config::getValue('appstoreenabled', true)==false) {
return NULL;
}
$url=OC_OCSClient::getAppStoreURL().'/content/categories';
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
return NULL;
}
$data=simplexml_load_string($xml);
@@ -88,8 +88,8 @@ class OC_OCSClient{
*
* This function returns a list of all the applications on the OCS server
*/
- public static function getApplications($categories,$page,$filter){
- if(OC_Config::getValue('appstoreenabled', true)==false){
+ public static function getApplications($categories,$page,$filter) {
+ if(OC_Config::getValue('appstoreenabled', true)==false) {
return(array());
}
@@ -104,7 +104,7 @@ class OC_OCSClient{
$url=OC_OCSClient::getAppStoreURL().'/content/data?categories='.urlencode($categoriesstring).'&sortmode=new&page='.urlencode($page).'&pagesize=100'.$filterurl.$version;
$apps=array();
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
return NULL;
}
$data=simplexml_load_string($xml);
@@ -135,14 +135,14 @@ class OC_OCSClient{
*
* This function returns an applications from the OCS server
*/
- public static function getApplication($id){
- if(OC_Config::getValue('appstoreenabled', true)==false){
+ public static function getApplication($id) {
+ if(OC_Config::getValue('appstoreenabled', true)==false) {
return NULL;
}
$url=OC_OCSClient::getAppStoreURL().'/content/data/'.urlencode($id);
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL);
return NULL;
}
@@ -172,14 +172,14 @@ class OC_OCSClient{
*
* This function returns an download url for an applications from the OCS server
*/
- public static function getApplicationDownload($id,$item){
- if(OC_Config::getValue('appstoreenabled', true)==false){
+ public static function getApplicationDownload($id,$item) {
+ if(OC_Config::getValue('appstoreenabled', true)==false) {
return NULL;
}
$url=OC_OCSClient::getAppStoreURL().'/content/download/'.urlencode($id).'/'.urlencode($item);
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
OC_Log::write('core','Unable to parse OCS content',OC_Log::FATAL);
return NULL;
}
@@ -202,8 +202,8 @@ class OC_OCSClient{
*
* This function returns a list of all the knowledgebase entries from the OCS server
*/
- public static function getKnownledgebaseEntries($page,$pagesize,$search=''){
- if(OC_Config::getValue('knowledgebaseenabled', true)==false){
+ public static function getKnownledgebaseEntries($page,$pagesize,$search='') {
+ if(OC_Config::getValue('knowledgebaseenabled', true)==false) {
$kbe=array();
$kbe['totalitems']=0;
return $kbe;
@@ -216,7 +216,7 @@ class OC_OCSClient{
$kbe=array();
$xml=@file_get_contents($url);
- if($xml==FALSE){
+ if($xml==FALSE) {
OC_Log::write('core','Unable to parse knowledgebase content',OC_Log::FATAL);
return NULL;
}