Merge branch 'master' of git://anongit.kde.org/owncloud
This commit is contained in:
commit
66576de1b7
|
@ -35,6 +35,6 @@
|
|||
</div></header>
|
||||
<?php echo $_['content']; ?>
|
||||
</div>
|
||||
<footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> <?php echo $l->t( 'is a personal cloud which runs on your own server' ); ?>.</p></footer>
|
||||
<footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> <?php echo $l->t( 'gives you the freedom to control your own data on the internet' ); ?></p></footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -46,16 +46,19 @@ foreach($registeredApps as $app){
|
|||
}
|
||||
}
|
||||
|
||||
$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'],
|
||||
);
|
||||
$catagoryNames=OC_OCSClient::getCategories();
|
||||
if(is_array($catagoryNames)){
|
||||
$categories=array_keys($catagoryNames);
|
||||
$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'],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue