Blame view

sources/core/templates/layout.user.php 5.71 KB
03e52840d   Kload   Init
1
  <!DOCTYPE html>
6d9380f96   Cédric Dupont   Update sources OC...
2
3
4
5
6
7
  <!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false"><![endif]-->
  <!--[if gt IE 9]><html class="ng-csp ie" data-placeholder-focus="false"><![endif]-->
  <!--[if !IE]><!--><html class="ng-csp" data-placeholder-focus="false"><!--<![endif]-->
03e52840d   Kload   Init
8

03e52840d   Kload   Init
9
10
  	<head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>">
  		<title>
31b7f2792   Kload   Upgrade to ownclo...
11
12
13
14
  			<?php
  				p(!empty($_['application'])?$_['application'].' - ':'');
  				p($theme->getTitle());
  			?>
03e52840d   Kload   Init
15
16
17
  		</title>
  		<meta charset="utf-8">
  		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6d9380f96   Cédric Dupont   Update sources OC...
18
  		<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
03e52840d   Kload   Init
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  		<meta name="apple-itunes-app" content="app-id=543672169">
  		<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
  		<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
  		<?php foreach($_['cssfiles'] as $cssfile): ?>
  			<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
  		<?php endforeach; ?>
  		<?php foreach($_['jsfiles'] as $jsfile): ?>
  			<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
  		<?php endforeach; ?>
  		<?php foreach($_['headers'] as $header): ?>
  			<?php
  				print_unescaped('<'.$header['tag'].' ');
  				foreach($header['attributes'] as $name=>$value) {
  					print_unescaped("$name='$value' ");
  				};
  				print_unescaped('/>');
  			?>
  		<?php endforeach; ?>
  	</head>
6d9380f96   Cédric Dupont   Update sources OC...
38
  	<?php flush(); ?>
03e52840d   Kload   Init
39
  	<body id="<?php p($_['bodyid']);?>">
6d9380f96   Cédric Dupont   Update sources OC...
40
  	<noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript to be enabled for correct operation.  Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and re-load this interface.')); ?></div></div></noscript>
03e52840d   Kload   Init
41
42
  	<div id="notification-container">
  		<div id="notification"></div>
31b7f2792   Kload   Upgrade to ownclo...
43
44
45
  		<?php if ($_['updateAvailable']): ?>
  			<div id="update-notification" style="display: inline;"><a href="<?php print_unescaped($_['updateLink']); ?>"><?php p($l->t('%s is available. Get more information on how to update.', array($_['updateVersion']))); ?></a></div>
  		<?php endif; ?>
03e52840d   Kload   Init
46
47
  	</div>
  	<header><div id="header">
6d9380f96   Cédric Dupont   Update sources OC...
48
49
50
51
52
53
54
55
56
  			<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud">
  				<div class="logo-icon svg"></div>
  			</a>
  			<a href="#" class="menutoggle">
  				<div class="header-appname">
  					<?php p(!empty($_['application'])?$_['application']: $l->t('Apps')); ?>
  				</div>
  				<div class="icon-caret svg"></div>
  			</a>
31b7f2792   Kload   Upgrade to ownclo...
57
  			<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
6d9380f96   Cédric Dupont   Update sources OC...
58
  			<div id="settings" class="svg">
31b7f2792   Kload   Upgrade to ownclo...
59
  				<span id="expand" tabindex="0" role="link">
31b7f2792   Kload   Upgrade to ownclo...
60
61
62
  					<?php if ($_['enableAvatars']): ?>
  					<div class="avatardiv"></div>
  					<?php endif; ?>
6d9380f96   Cédric Dupont   Update sources OC...
63
64
  					<span id="expandDisplayName"><?php  p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
  					<img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/caret.svg')); ?>" />
03e52840d   Kload   Init
65
66
  				</span>
  				<div id="expanddiv">
6d9380f96   Cédric Dupont   Update sources OC...
67
  				<ul>
03e52840d   Kload   Init
68
69
70
71
72
73
74
75
76
77
  				<?php foreach($_['settingsnavigation'] as $entry):?>
  					<li>
  						<a href="<?php print_unescaped($entry['href']); ?>" title=""
  							<?php if( $entry["active"] ): ?> class="active"<?php endif; ?>>
  							<img class="svg" alt="" src="<?php print_unescaped($entry['icon']); ?>">
  							<?php p($entry['name']) ?>
  						</a>
  					</li>
  				<?php endforeach; ?>
  					<li>
31b7f2792   Kload   Upgrade to ownclo...
78
  						<a id="logout" <?php print_unescaped(OC_User::getLogoutAttribute()); ?>>
03e52840d   Kload   Init
79
80
81
82
  							<img class="svg" alt="" src="<?php print_unescaped(image_path('', 'actions/logout.svg')); ?>" />
  							<?php p($l->t('Log out'));?>
  						</a>
  					</li>
6d9380f96   Cédric Dupont   Update sources OC...
83
  				</ul>
03e52840d   Kload   Init
84
  				</div>
6d9380f96   Cédric Dupont   Update sources OC...
85
  			</div>
03e52840d   Kload   Init
86
87
88
89
90
91
92
93
94
  
  			<form class="searchbox" action="#" method="post">
  				<input id="searchbox" class="svg" type="search" name="query"
  					value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>"
  					autocomplete="off" x-webkit-speech />
  			</form>
  		</div></header>
  
  		<nav><div id="navigation">
6d9380f96   Cédric Dupont   Update sources OC...
95
96
  			<div id="apps" class="svg">
  				<ul>
03e52840d   Kload   Init
97
98
99
100
  				<?php foreach($_['navigation'] as $entry): ?>
  					<li data-id="<?php p($entry['id']); ?>">
  						<a href="<?php print_unescaped($entry['href']); ?>" title=""
  							<?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
6d9380f96   Cédric Dupont   Update sources OC...
101
102
  							<img class="app-icon svg" alt="" src="<?php print_unescaped($entry['icon']); ?>"/>
  							<div class="icon-loading-dark" style="display:none;"></div>
03e52840d   Kload   Init
103
104
105
106
107
108
  							<span>
  								<?php p($entry['name']); ?>
  							</span>
  						</a>
  					</li>
  				<?php endforeach; ?>
31b7f2792   Kload   Upgrade to ownclo...
109

6d9380f96   Cédric Dupont   Update sources OC...
110
  				<!-- show "More apps" link to app administration directly in app navigation, as last entry -->
31b7f2792   Kload   Upgrade to ownclo...
111
112
113
  				<?php if(OC_User::isAdminUser(OC_User::getUser())): ?>
  					<li id="apps-management">
  						<a href="<?php print_unescaped(OC_Helper::linkToRoute('settings_apps').'?installed'); ?>" title=""
6d9380f96   Cédric Dupont   Update sources OC...
114
115
116
  							<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
  							<img class="app-icon svg" alt="" src="<?php print_unescaped(OC_Helper::imagePath('settings', 'apps.svg')); ?>"/>
  							<div class="icon-loading-dark" style="display:none;"></div>
31b7f2792   Kload   Upgrade to ownclo...
117
118
119
120
121
122
  							<span>
  								<?php p($l->t('Apps')); ?>
  							</span>
  						</a>
  					</li>
  				<?php endif; ?>
6d9380f96   Cédric Dupont   Update sources OC...
123
124
125
  
  				</ul>
  			</div>
03e52840d   Kload   Init
126
127
128
  		</div></nav>
  
  		<div id="content-wrapper">
6d9380f96   Cédric Dupont   Update sources OC...
129
  			<div id="content" class="app-<?php p($_['appid']) ?>">
03e52840d   Kload   Init
130
131
132
133
134
  				<?php print_unescaped($_['content']); ?>
  			</div>
  		</div>
  	</body>
  </html>