2011-04-16 11:49:57 -04:00
|
|
|
<?php
|
2011-08-22 19:40:13 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program 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, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
*
|
2011-08-22 19:40:13 -04:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2011-09-18 15:31:56 -04:00
|
|
|
OC_Util::checkLoggedIn();
|
2011-04-17 13:46:09 -04:00
|
|
|
|
2011-04-16 19:11:44 -04:00
|
|
|
// Load the files we need
|
2011-08-12 22:04:48 -04:00
|
|
|
OC_Util::addStyle( "settings", "settings" );
|
2015-12-04 11:23:51 -05:00
|
|
|
\OC::$server->getNavigationManager()->setActiveEntry('help');
|
2011-04-16 11:49:57 -04:00
|
|
|
|
2012-12-12 16:41:12 -05:00
|
|
|
|
2013-04-17 09:32:03 -04:00
|
|
|
if(isset($_GET['mode']) and $_GET['mode'] === 'admin') {
|
2015-12-18 05:46:21 -05:00
|
|
|
$url=\OCP\Util::linkToAbsolute( 'core', 'doc/admin/index.html' );
|
2012-12-13 03:26:25 -05:00
|
|
|
$style1='';
|
2015-05-12 06:20:28 -04:00
|
|
|
$style2=' active';
|
2012-12-12 16:41:12 -05:00
|
|
|
}else{
|
2015-12-18 05:46:21 -05:00
|
|
|
$url=\OCP\Util::linkToAbsolute( 'core', 'doc/user/index.html' );
|
2015-05-12 06:20:28 -04:00
|
|
|
$style1=' active';
|
2012-12-13 03:26:25 -05:00
|
|
|
$style2='';
|
2012-12-12 16:41:12 -05:00
|
|
|
}
|
|
|
|
|
|
2015-12-17 02:19:06 -05:00
|
|
|
$url1=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=user';
|
|
|
|
|
$url2=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=admin';
|
2011-04-16 11:49:57 -04:00
|
|
|
|
2011-08-12 22:04:48 -04:00
|
|
|
$tmpl = new OC_Template( "settings", "help", "user" );
|
2013-01-14 13:45:17 -05:00
|
|
|
$tmpl->assign( "admin", OC_User::isAdminUser(OC_User::getUser()));
|
2012-12-12 16:41:12 -05:00
|
|
|
$tmpl->assign( "url", $url );
|
|
|
|
|
$tmpl->assign( "url1", $url1 );
|
|
|
|
|
$tmpl->assign( "url2", $url2 );
|
2012-12-13 03:26:25 -05:00
|
|
|
$tmpl->assign( "style1", $style1 );
|
|
|
|
|
$tmpl->assign( "style2", $style2 );
|
2011-04-16 11:49:57 -04:00
|
|
|
$tmpl->printPage();
|