summaryrefslogtreecommitdiffstats
path: root/apps/files_publiclink/admin.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-06-02 02:45:35 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-06-02 02:46:50 +0200
commit8c5a06028aa4bf7a29d79d63a713361ce2f50633 (patch)
tree3b94337d8bbbef5844dfe08d4478b34938655221 /apps/files_publiclink/admin.php
parent6c6871336d6570b02b030d521d18eb4d28f2a83f (diff)
downloadnextcloud-server-8c5a06028aa4bf7a29d79d63a713361ce2f50633.tar.gz
nextcloud-server-8c5a06028aa4bf7a29d79d63a713361ce2f50633.zip
port sharing by publiclink fully to the 2.0 codebase and provide a simple gui for it
Diffstat (limited to 'apps/files_publiclink/admin.php')
-rw-r--r--apps/files_publiclink/admin.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/apps/files_publiclink/admin.php b/apps/files_publiclink/admin.php
new file mode 100644
index 00000000000..a48076b4d42
--- /dev/null
+++ b/apps/files_publiclink/admin.php
@@ -0,0 +1,55 @@
+<?php
+
+/**
+* ownCloud - ajax frontend
+*
+* @author Robin Appelman
+* @copyright 2010 Robin Appelman icewind1991@gmail.com
+*
+* 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/>.
+*
+*/
+
+
+// Init owncloud
+require_once('../../lib/base.php');
+require_once( 'lib_public.php' );
+require( 'template.php' );
+
+
+// Check if we are a user
+if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
+ header( "Location: ".OC_HELPER::linkTo( "index.php" ));
+ exit();
+}
+
+OC_APP::setActiveNavigationEntry( "files_publiclink_administration" );
+
+OC_UTIL::addStyle( 'files_publiclink', 'admin' );
+OC_UTIL::addScript( 'files_publiclink', 'admin' );
+
+if(isset($_SERVER['HTTPS'])) {
+ $baseUrl= "https://". $_SERVER['SERVER_NAME'] . OC_HELPER::linkTo('files_publiclink','get.php');
+}else{
+ $baseUrl= "http://". $_SERVER['SERVER_NAME'] . OC_HELPER::linkTo('files_publiclink','get.php');
+}
+
+
+// return template
+$tmpl = new OC_TEMPLATE( "files_publiclink", "admin", "admin" );
+$tmpl->assign( 'links', OC_PublicLink::getLinks());
+$tmpl->assign('baseUrl',$baseUrl);
+$tmpl->printPage();
+
+?>