2011-10-22 17:44:34 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2012-03-03 00:32:17 +04:00
|
|
|
* ownCloud - External plugin
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
2012-05-26 21:14:24 +04:00
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
2012-03-03 00:32:17 +04:00
|
|
|
*
|
|
|
|
* 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 Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2012-03-03 00:32:17 +04:00
|
|
|
require_once('lib/external.php');
|
2011-10-22 17:44:34 +04:00
|
|
|
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkLoggedIn();
|
2011-10-22 17:44:34 +04:00
|
|
|
|
2012-03-03 00:32:17 +04:00
|
|
|
if (isset($_GET['id'])) {
|
2011-10-22 17:44:34 +04:00
|
|
|
|
2012-03-03 00:32:17 +04:00
|
|
|
$id = $_GET['id'];
|
2011-10-22 17:44:34 +04:00
|
|
|
$id = (int) $id;
|
|
|
|
|
2012-03-03 00:32:17 +04:00
|
|
|
$sites = OC_External::getSites();
|
|
|
|
if (sizeof($sites) >= $id) {
|
|
|
|
$url = $sites[$id - 1][1];
|
2012-05-02 02:50:26 +04:00
|
|
|
OCP\App::setActiveNavigationEntry('external_index' . $id);
|
2011-10-22 17:44:34 +04:00
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template('external', 'frame', 'user');
|
2012-03-03 00:32:17 +04:00
|
|
|
$tmpl->assign('url', $url);
|
|
|
|
$tmpl->printPage();
|
|
|
|
}
|
2011-10-22 17:44:34 +04:00
|
|
|
}
|