2011-04-16 17:29:54 -04:00
|
|
|
<!DOCTYPE html>
|
2016-06-16 02:28:43 -04:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" >
|
2016-02-09 07:06:48 -05:00
|
|
|
<head data-user="<?php p($_['user_uid']); ?>" data-user-displayname="<?php p($_['user_displayname']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>">
|
2015-03-17 18:36:05 -04:00
|
|
|
<meta charset="utf-8">
|
2013-06-12 08:33:24 -04:00
|
|
|
<title>
|
2013-10-17 04:40:06 -04:00
|
|
|
<?php
|
|
|
|
|
p(!empty($_['application'])?$_['application'].' - ':'');
|
|
|
|
|
p($theme->getTitle());
|
|
|
|
|
?>
|
2013-06-12 08:33:24 -04:00
|
|
|
</title>
|
2015-03-17 21:11:47 -04:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2015-09-09 12:07:43 -04:00
|
|
|
<meta name="referrer" content="never">
|
2014-03-25 18:35:55 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
2014-08-28 04:12:59 -04:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
|
2014-07-08 07:14:54 -04:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
2016-10-07 03:44:42 -04:00
|
|
|
<meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:$theme->getTitle()); ?>">
|
2014-07-08 07:14:54 -04:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
2015-07-29 12:16:01 -04:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
|
2016-03-08 15:09:34 -05:00
|
|
|
<link rel="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>">
|
2015-03-17 18:57:23 -04:00
|
|
|
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
|
2016-06-08 10:46:26 -04:00
|
|
|
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="#0082c9">
|
2011-04-16 13:49:18 -04:00
|
|
|
<?php foreach($_['cssfiles'] as $cssfile): ?>
|
2015-06-10 06:16:45 -04:00
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>">
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
<?php foreach($_['printcssfiles'] as $cssfile): ?>
|
|
|
|
|
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="print">
|
2011-03-09 15:57:00 -05:00
|
|
|
<?php endforeach; ?>
|
2016-10-25 15:36:37 -04:00
|
|
|
<?php if (isset($_['inline_ocjs'])): ?>
|
|
|
|
|
<script nonce="<?php p(\OC::$server->getContentSecurityPolicyNonceManager()->getNonce()) ?>" type="text/javascript">
|
|
|
|
|
<?php print_unescaped($_['inline_ocjs']); ?>
|
|
|
|
|
</script>
|
|
|
|
|
<?php endif; ?>
|
2011-04-16 13:49:18 -04:00
|
|
|
<?php foreach($_['jsfiles'] as $jsfile): ?>
|
2016-10-24 10:31:06 -04:00
|
|
|
<script nonce="<?php p(\OC::$server->getContentSecurityPolicyNonceManager()->getNonce()) ?>" src="<?php print_unescaped($jsfile); ?>"></script>
|
2011-03-09 15:57:00 -05:00
|
|
|
<?php endforeach; ?>
|
2014-10-28 06:15:58 -04:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2011-03-02 05:56:48 -05:00
|
|
|
</head>
|
2013-02-27 16:55:39 -05:00
|
|
|
<body id="<?php p($_['bodyid']);?>">
|
2015-02-09 10:01:52 -05:00
|
|
|
<?php include('layout.noscript.warning.php'); ?>
|
2013-01-11 05:52:07 -05:00
|
|
|
<div id="notification-container">
|
2013-01-11 09:19:53 -05:00
|
|
|
<div id="notification"></div>
|
2013-01-11 05:52:07 -05:00
|
|
|
</div>
|
2015-03-18 14:29:15 -04:00
|
|
|
<header role="banner"><div id="header">
|
2014-12-17 10:05:01 -05:00
|
|
|
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
|
2015-04-01 15:10:48 -04:00
|
|
|
id="owncloud" tabindex="1">
|
2016-06-23 07:39:28 -04:00
|
|
|
<div class="logo-icon">
|
2014-12-18 04:50:05 -05:00
|
|
|
<h1 class="hidden-visually">
|
|
|
|
|
<?php p($theme->getName()); ?>
|
|
|
|
|
</h1>
|
|
|
|
|
</div>
|
2014-06-04 07:17:47 -04:00
|
|
|
</a>
|
2014-12-17 10:05:01 -05:00
|
|
|
|
2015-05-21 18:04:47 -04:00
|
|
|
<a href="#" class="header-appname-container menutoggle" tabindex="2">
|
2014-11-06 07:26:38 -05:00
|
|
|
<h1 class="header-appname">
|
2016-09-06 08:11:30 -04:00
|
|
|
<?php p(!empty($_['application'])?$_['application']: $l->t('Apps')); ?>
|
2014-11-06 07:26:38 -05:00
|
|
|
</h1>
|
2016-06-23 07:39:28 -04:00
|
|
|
<div class="icon-caret"></div>
|
2013-10-10 14:29:13 -04:00
|
|
|
</a>
|
2014-12-17 10:05:01 -05:00
|
|
|
|
2013-10-01 18:32:11 -04:00
|
|
|
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
|
2016-06-23 07:39:28 -04:00
|
|
|
<div id="settings">
|
2015-11-02 03:49:03 -05:00
|
|
|
<div id="expand" tabindex="6" role="link" class="menutoggle">
|
2014-02-20 07:36:52 -05:00
|
|
|
<?php if ($_['enableAvatars']): ?>
|
2015-03-26 05:28:49 -04:00
|
|
|
<div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown'); } else { print_unescaped('" style="display: none'); } ?>">
|
2014-03-15 10:27:48 -04:00
|
|
|
<?php if ($_['userAvatarSet']): ?>
|
2015-07-30 14:31:27 -04:00
|
|
|
<img alt="" width="32" height="32"
|
2016-08-29 08:55:23 -04:00
|
|
|
src="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', ['userId' => $_['user_uid'], 'size' => 32, 'v' => $_['userAvatarVersion']]));?>"
|
|
|
|
|
srcset="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', ['userId' => $_['user_uid'], 'size' => 64, 'v' => $_['userAvatarVersion']]));?> 2x, <?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.getAvatar', ['userId' => $_['user_uid'], 'size' => 128, 'v' => $_['userAvatarVersion']]));?> 4x"
|
2015-07-30 14:31:27 -04:00
|
|
|
>
|
2014-03-15 10:27:48 -04:00
|
|
|
<?php endif; ?>
|
|
|
|
|
</div>
|
2014-02-20 07:36:52 -05:00
|
|
|
<?php endif; ?>
|
2013-03-02 10:09:36 -05:00
|
|
|
<span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
|
2016-07-12 08:59:28 -04:00
|
|
|
<div class="icon-caret"></div>
|
2014-03-15 10:27:48 -04:00
|
|
|
</div>
|
2013-02-06 10:03:01 -05:00
|
|
|
<div id="expanddiv">
|
2013-12-09 19:45:15 -05:00
|
|
|
<ul>
|
2012-10-27 12:58:16 -04:00
|
|
|
<?php foreach($_['settingsnavigation'] as $entry):?>
|
|
|
|
|
<li>
|
2015-04-01 15:10:48 -04:00
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>"
|
2013-02-14 17:19:12 -05:00
|
|
|
<?php if( $entry["active"] ): ?> class="active"<?php endif; ?>>
|
2016-08-18 06:36:14 -04:00
|
|
|
<img alt="" src="<?php print_unescaped($entry['icon'] . '?v=' . $_['versionHash']); ?>">
|
2013-02-27 16:55:39 -05:00
|
|
|
<?php p($entry['name']) ?>
|
2012-10-27 12:58:16 -04:00
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
<li>
|
2013-10-07 05:49:43 -04:00
|
|
|
<a id="logout" <?php print_unescaped(OC_User::getLogoutAttribute()); ?>>
|
2016-08-18 06:36:14 -04:00
|
|
|
<img alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg') . '?v=' . $_['versionHash']); ?>">
|
2013-02-27 16:55:39 -05:00
|
|
|
<?php p($l->t('Log out'));?>
|
2012-10-27 12:58:16 -04:00
|
|
|
</a>
|
|
|
|
|
</li>
|
2013-12-09 19:45:15 -05:00
|
|
|
</ul>
|
2012-10-27 12:58:16 -04:00
|
|
|
</div>
|
2013-12-09 19:45:15 -05:00
|
|
|
</div>
|
2012-10-27 12:58:16 -04:00
|
|
|
|
2015-11-03 04:10:52 -05:00
|
|
|
<form class="searchbox" action="#" method="post" role="search" novalidate>
|
2014-12-18 07:34:48 -05:00
|
|
|
<label for="searchbox" class="hidden-visually">
|
2014-12-17 08:49:13 -05:00
|
|
|
<?php p($l->t('Search'));?>
|
|
|
|
|
</label>
|
2016-06-23 07:39:28 -04:00
|
|
|
<input id="searchbox" type="search" name="query"
|
2015-11-02 06:14:54 -05:00
|
|
|
value="" required
|
2015-03-26 05:28:49 -04:00
|
|
|
autocomplete="off" tabindex="5">
|
2011-08-10 16:56:44 -04:00
|
|
|
</form>
|
2011-08-09 04:30:37 -04:00
|
|
|
</div></header>
|
2011-03-02 05:56:48 -05:00
|
|
|
|
2015-03-18 14:29:15 -04:00
|
|
|
<nav role="navigation"><div id="navigation">
|
2016-06-23 07:39:28 -04:00
|
|
|
<div id="apps">
|
2014-06-04 09:27:46 -04:00
|
|
|
<ul>
|
2011-08-08 11:52:29 -04:00
|
|
|
<?php foreach($_['navigation'] as $entry): ?>
|
2013-02-27 16:55:39 -05:00
|
|
|
<li data-id="<?php p($entry['id']); ?>">
|
2015-04-01 15:10:48 -04:00
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>" tabindex="3"
|
2013-02-14 17:19:12 -05:00
|
|
|
<?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
|
2016-07-28 16:33:17 -04:00
|
|
|
<svg width="32" height="32" viewBox="0 0 32 32">
|
2016-08-17 09:59:30 -04:00
|
|
|
<defs><filter id="invert"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"></feColorMatrix></filter></defs>
|
2016-08-18 06:34:55 -04:00
|
|
|
<image x="0" y="0" width="32" height="32" preserveAspectRatio="xMinYMin meet" filter="url(#invert)" xlink:href="<?php print_unescaped($entry['icon'] . '?v=' . $_['versionHash']); ?>" class="app-icon"></image>
|
2016-07-28 16:33:17 -04:00
|
|
|
</svg>
|
2014-06-04 09:07:15 -04:00
|
|
|
<div class="icon-loading-dark" style="display:none;"></div>
|
2013-04-10 09:44:50 -04:00
|
|
|
<span>
|
|
|
|
|
<?php p($entry['name']); ?>
|
|
|
|
|
</span>
|
2012-10-26 17:38:36 -04:00
|
|
|
</a>
|
2011-08-08 11:52:29 -04:00
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
2015-03-26 05:28:49 -04:00
|
|
|
<?php
|
2015-03-21 02:10:46 -04:00
|
|
|
/* show "More apps" link to app administration directly in app navigation, as last entry */
|
2015-03-26 05:28:49 -04:00
|
|
|
if(OC_User::isAdminUser(OC_User::getUser())):
|
2015-03-21 02:10:46 -04:00
|
|
|
?>
|
2014-06-04 09:27:46 -04:00
|
|
|
<li id="apps-management">
|
2015-03-30 09:58:20 -04:00
|
|
|
<a href="<?php print_unescaped(\OC::$server->getURLGenerator()->linkToRoute('settings.AppSettings.viewApps')); ?>" tabindex="4"
|
2013-12-09 09:47:51 -05:00
|
|
|
<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
|
2016-07-28 16:33:17 -04:00
|
|
|
<svg width="32" height="32" viewBox="0 0 32 32" class="app-icon">
|
2016-08-17 09:59:30 -04:00
|
|
|
<defs><filter id="invert"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"></feColorMatrix></filter></defs>
|
2016-08-18 06:34:55 -04:00
|
|
|
<image x="0" y="0" width="32" height="32" preserveAspectRatio="xMinYMin meet" filter="url(#invert)" xlink:href="<?php print_unescaped(image_path('settings', 'apps.svg') . '?v=' . $_['versionHash']); ?>"></image>
|
2016-07-28 16:33:17 -04:00
|
|
|
</svg>
|
2014-07-04 06:32:37 -04:00
|
|
|
<div class="icon-loading-dark" style="display:none;"></div>
|
2013-08-07 12:18:09 -04:00
|
|
|
<span>
|
2013-08-30 05:17:31 -04:00
|
|
|
<?php p($l->t('Apps')); ?>
|
2013-08-07 12:18:09 -04:00
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<?php endif; ?>
|
2014-06-04 09:27:46 -04:00
|
|
|
|
|
|
|
|
</ul>
|
2013-12-09 19:45:15 -05:00
|
|
|
</div>
|
2011-08-09 04:30:37 -04:00
|
|
|
</div></nav>
|
|
|
|
|
|
2013-01-16 13:38:19 -05:00
|
|
|
<div id="content-wrapper">
|
2015-03-18 14:29:15 -04:00
|
|
|
<div id="content" class="app-<?php p($_['appid']) ?>" role="main">
|
2013-02-27 16:55:39 -05:00
|
|
|
<?php print_unescaped($_['content']); ?>
|
2013-01-16 13:38:19 -05:00
|
|
|
</div>
|
2011-03-02 05:56:48 -05:00
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|