2011-04-16 19:49:57 +04:00
|
|
|
<?php
|
2011-08-23 03:40:13 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03: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-23 03:40:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2019-10-17 11:23:29 +03:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
2019-10-17 11:23:29 +03:00
|
|
|
\OC::$server->getEventDispatcher()->dispatch(TemplateResponse::EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN);
|
2011-04-17 21:46:09 +04:00
|
|
|
|
2011-04-17 03:11:44 +04:00
|
|
|
// Load the files we need
|
2011-08-13 06:04:48 +04:00
|
|
|
OC_Util::addStyle( "settings", "settings" );
|
2015-12-04 19:23:51 +03:00
|
|
|
\OC::$server->getNavigationManager()->setActiveEntry('help');
|
2011-04-16 19:49:57 +04:00
|
|
|
|
2012-12-13 01:41:12 +04:00
|
|
|
|
2013-04-17 17:32:03 +04:00
|
|
|
if(isset($_GET['mode']) and $_GET['mode'] === 'admin') {
|
2015-12-18 13:46:21 +03:00
|
|
|
$url=\OCP\Util::linkToAbsolute( 'core', 'doc/admin/index.html' );
|
2012-12-13 12:26:25 +04:00
|
|
|
$style1='';
|
2015-05-12 13:20:28 +03:00
|
|
|
$style2=' active';
|
2012-12-13 01:41:12 +04:00
|
|
|
}else{
|
2015-12-18 13:46:21 +03:00
|
|
|
$url=\OCP\Util::linkToAbsolute( 'core', 'doc/user/index.html' );
|
2015-05-12 13:20:28 +03:00
|
|
|
$style1=' active';
|
2012-12-13 12:26:25 +04:00
|
|
|
$style2='';
|
2012-12-13 01:41:12 +04:00
|
|
|
}
|
|
|
|
|
2015-12-17 10:19:06 +03:00
|
|
|
$url1=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=user';
|
|
|
|
$url2=\OC::$server->getURLGenerator()->linkToRoute('settings_help').'?mode=admin';
|
2011-04-16 19:49:57 +04:00
|
|
|
|
2011-08-13 06:04:48 +04:00
|
|
|
$tmpl = new OC_Template( "settings", "help", "user" );
|
2013-01-14 22:45:17 +04:00
|
|
|
$tmpl->assign( "admin", OC_User::isAdminUser(OC_User::getUser()));
|
2012-12-13 01:41:12 +04:00
|
|
|
$tmpl->assign( "url", $url );
|
|
|
|
$tmpl->assign( "url1", $url1 );
|
|
|
|
$tmpl->assign( "url2", $url2 );
|
2012-12-13 12:26:25 +04:00
|
|
|
$tmpl->assign( "style1", $style1 );
|
|
|
|
$tmpl->assign( "style2", $style2 );
|
2011-04-16 19:49:57 +04:00
|
|
|
$tmpl->printPage();
|