aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-11 15:11:06 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-08-11 15:11:06 +0200
commitbc5bf18eedb3c3afd4c9266b5c4a0738f467d54f (patch)
treee013a8242768650691ffad496b56487145baa444
parent592eacf37d7b845499ddce65b15fa86791cb3eae (diff)
downloadnextcloud-server-bc5bf18eedb3c3afd4c9266b5c4a0738f467d54f.tar.gz
nextcloud-server-bc5bf18eedb3c3afd4c9266b5c4a0738f467d54f.zip
bit of work on app management
-rw-r--r--admin/apps.php15
-rw-r--r--lib/ocsclient.php16
2 files changed, 21 insertions, 10 deletions
diff --git a/admin/apps.php b/admin/apps.php
index 07e93728a39..c74f9032916 100644
--- a/admin/apps.php
+++ b/admin/apps.php
@@ -45,8 +45,19 @@ foreach($registeredApps as $app){
}
}
-$categories=OC_OCSClient::getCategories();
-// print_r($categories);
+$categories=array_keys(OC_OCSClient::getCategories());
+$externalApps=OC_OCSClient::getApplications($categories);
+foreach($externalApps as $app){
+ $apps[]=array(
+ 'name'=>$app['name'],
+ 'id'=>$app['id'],
+ 'active'=>false,
+ 'description'=>$app['description'],
+ 'author'=>$app['personid'],
+ );
+}
+
+
$tmpl = new OC_Template( "admin", "apps", "user" );
$tmpl->assign('apps',$apps);
diff --git a/lib/ocsclient.php b/lib/ocsclient.php
index 2d85e715090..1df9e21e606 100644
--- a/lib/ocsclient.php
+++ b/lib/ocsclient.php
@@ -80,15 +80,15 @@ class OC_OCSClient{
$tmp=$data->data->content;
for($i = 0; $i < count($tmp); $i++) {
$app=array();
- $app['id']=$tmp[$i]->id;
- $app['name']=$tmp[$i]->name;
- $app['type']=$tmp[$i]->typeid;
- $app['typename']=$tmp[$i]->typename;
- $app['personid']=$tmp[$i]->personid;
- $app['detailpage']=$tmp[$i]->detailpage;
- $app['preview']=$tmp[$i]->smallpreviewpic1;
+ $app['id']=(string)$tmp[$i]->id;
+ $app['name']=(string)$tmp[$i]->name;
+ $app['type']=(string)$tmp[$i]->typeid;
+ $app['typename']=(string)$tmp[$i]->typename;
+ $app['personid']=(string)$tmp[$i]->personid;
+ $app['detailpage']=(string)$tmp[$i]->detailpage;
+ $app['preview']=(string)$tmp[$i]->smallpreviewpic1;
$app['changed']=strtotime($tmp[$i]->changed);
- $app['description']=$tmp[$i]->description;
+ $app['description']=(string)$tmp[$i]->description;
$apps[]=$app;
}