diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-04-16 17:35:37 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-04-16 17:35:37 +0200 |
commit | e440e733fd0b20d6ca5bef8a3097c6e40346dcc7 (patch) | |
tree | 91ea2123534f18dcd98b662bef76cb8c82f904ea /admin | |
parent | 5112295723a841da0baa47c5560a43a2cf999119 (diff) | |
download | nextcloud-server-e440e733fd0b20d6ca5bef8a3097c6e40346dcc7.tar.gz nextcloud-server-e440e733fd0b20d6ca5bef8a3097c6e40346dcc7.zip |
first stepp of application installation
Diffstat (limited to 'admin')
-rw-r--r-- | admin/apps.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/admin/apps.php b/admin/apps.php new file mode 100644 index 00000000000..cd686fadf16 --- /dev/null +++ b/admin/apps.php @@ -0,0 +1,49 @@ +<?php + +/** +* ownCloud +* +* @author Frank Karlitschek +* @copyright 2010 Frank Karlitschek karlitschek@kde.org +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see <http://www.gnu.org/licenses/>. +* +*/ + +require_once('../lib/base.php'); +require( 'template.php' ); +if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){ + header( "Location: ".OC_HELPER::linkTo( "index.php" )); + exit(); +} + + +// Load the files we need +OC_UTIL::addStyle( "files", "files" ); +OC_UTIL::addScript( "files", "files" ); + + +$categories=OC_OCSCLIENT::getCategories(); +$apps=OC_OCSCLIENT::getApplications($categories); + + +// return template +$tmpl = new OC_TEMPLATE( "files", "index", "user" ); +$tmpl->assign( "categories", $categories ); +$tmpl->assign( "apps", $apps ); +$tmpl->printPage(); + + + +?> |