|
|
|
|
@ -61,7 +61,6 @@ |
|
|
|
|
|
|
|
|
|
<div id="appmenu"> |
|
|
|
|
<ul> |
|
|
|
|
<?php $headerIconCount = 8; ?> |
|
|
|
|
<?php foreach($_['headernavigation'] as $entry): ?> |
|
|
|
|
<li data-id="<?php p($entry['id']); ?>">
|
|
|
|
|
<a href="<?php print_unescaped($entry['href']); ?>" tabindex="3"
|
|
|
|
|
@ -74,22 +73,12 @@ |
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
<?php endforeach; ?> |
|
|
|
|
<li id="more-apps" class="menutoggle<?php if (!(count($_['navigation']) > $headerIconCount || (OC_User::isAdminUser(OC_User::getUser()) && count($_['navigation'])>=$headerIconCount))): ?> hidden<?php endif; ?>">
|
|
|
|
|
<li id="more-apps" class="menutoggle<?php if (count($_['navigation']) <= 8): ?> hidden<?php endif; ?>">
|
|
|
|
|
<a href="#"> |
|
|
|
|
<div class="icon-more-white"></div> |
|
|
|
|
<span><?php p($l->t('More apps')); ?></span>
|
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
<?php if(OC_User::isAdminUser(OC_User::getUser())): ?> |
|
|
|
|
<li <?php if(count($_['navigation'])>$headerIconCount-1): ?> class="hidden apps-management"<?php else: ?> class="apps-management" <?php endif; ?>>
|
|
|
|
|
<a href="<?php print_unescaped(\OC::$server->getURLGenerator()->linkToRoute('settings.AppSettings.viewApps')); ?>" tabindex="4"
|
|
|
|
|
<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
|
|
|
|
|
<img src="<?php print_unescaped(image_path('settings', 'apps.svg') . '?v=' . $_['versionHash']); ?>" />
|
|
|
|
|
<div class="icon-loading-dark" style="display:none;"></div> |
|
|
|
|
<span><?php p($l->t('Apps')); ?></span>
|
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
<?php endif; ?> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
@ -115,25 +104,6 @@ |
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
<?php endforeach; ?> |
|
|
|
|
<?php |
|
|
|
|
/* show "More apps" link to app administration directly in app navigation, as last entry */ |
|
|
|
|
if(OC_User::isAdminUser(OC_User::getUser())): |
|
|
|
|
?> |
|
|
|
|
<li class="apps-management"> |
|
|
|
|
<a href="<?php print_unescaped(\OC::$server->getURLGenerator()->linkToRoute('settings.AppSettings.viewApps')); ?>" tabindex="4"
|
|
|
|
|
<?php if( $_['appsmanagement_active'] ): ?> class="active"<?php endif; ?>>
|
|
|
|
|
<svg width="32" height="32" viewBox="0 0 32 32" class="app-icon"> |
|
|
|
|
<defs><filter id="invert-appsmanagement"><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> |
|
|
|
|
<image x="0" y="0" width="32" height="32" preserveAspectRatio="xMinYMin meet" filter="url(#invert-appsmanagement)" xlink:href="<?php print_unescaped(image_path('settings', 'apps.svg') . '?v=' . $_['versionHash']); ?>"></image>
|
|
|
|
|
</svg> |
|
|
|
|
<div class="icon-loading-dark" style="display:none;"></div> |
|
|
|
|
<span> |
|
|
|
|
<?php p($l->t('Apps')); ?> |
|
|
|
|
</span> |
|
|
|
|
</a> |
|
|
|
|
</li> |
|
|
|
|
<?php endif; ?> |
|
|
|
|
|
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
</div></nav> |
|
|
|
|
|