2011-04-16 19:49:57 +04:00
|
|
|
<?php
|
2011-08-23 03:40:13 +04:00
|
|
|
/**
|
2012-05-26 21:14:24 +04:00
|
|
|
* 2012 Frank Karlitschek frank@owncloud.org
|
2011-08-23 03:40:13 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2011-04-16 19:49:57 +04:00
|
|
|
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
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" );
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_App::setActiveNavigationEntry( "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') {
|
2013-08-17 12:33:11 +04:00
|
|
|
$url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' );
|
2012-12-13 12:26:25 +04:00
|
|
|
$style1='';
|
|
|
|
$style2=' pressed';
|
2012-12-13 01:41:12 +04:00
|
|
|
}else{
|
2013-08-17 12:33:11 +04:00
|
|
|
$url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' );
|
2012-12-13 12:26:25 +04:00
|
|
|
$style1=' pressed';
|
|
|
|
$style2='';
|
2012-12-13 01:41:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$url1=OC_Helper::linkToRoute( "settings_help" ).'?mode=user';
|
|
|
|
$url2=OC_Helper::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();
|