Use proper shortcut methods in templates
This commit is contained in:
parent
046506dd14
commit
22898fa107
|
@ -34,7 +34,7 @@
|
|||
'id' => 'files_index',
|
||||
'order' => 0,
|
||||
'href' => $urlGenerator->linkToRoute('files.view.index'),
|
||||
'icon' => \OCP\Util::imagePath('core', 'places/files.svg'),
|
||||
'icon' => $urlGenerator->imagePath('core', 'places/files.svg'),
|
||||
'name' => $l->t('Files'),
|
||||
];
|
||||
});
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<button type="button" class="ldap_action_test_connection" name="ldap_action_test_connection">
|
||||
<?php p($l->t('Test Configuration'));?>
|
||||
</button>
|
||||
<a href="<?php p(\OC::$server->getURLGenerator()->linkToDocs('admin-ldap')); ?>"
|
||||
<a href="<?php p(link_to_docs('admin-ldap')); ?>"
|
||||
target="_blank" rel="noreferrer">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('', 'actions/info.png')); ?>"
|
||||
<img src="<?php print_unescaped(image_path('', 'actions/info.png')); ?>"
|
||||
style="height:1.75ex" />
|
||||
<?php p($l->t('Help'));?>
|
||||
</a>
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
<button class="ldap_action_continue" name="ldap_action_continue" type="button">
|
||||
<?php p($l->t('Continue'));?>
|
||||
</button>
|
||||
<a href="<?php p(\OC::$server->getURLGenerator()->linkToDocs('admin-ldap')); ?>"
|
||||
<a href="<?php p(link_to_docs('admin-ldap')); ?>"
|
||||
target="_blank" rel="noreferrer">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('', 'actions/info.png')); ?>"
|
||||
<img src="<?php print_unescaped(image_path('', 'actions/info.png')); ?>"
|
||||
style="height:1.75ex" />
|
||||
<span class="ldap_grey"><?php p($l->t('Help'));?></span>
|
||||
</a>
|
||||
|
|
|
@ -120,5 +120,5 @@ style('user_ldap', 'settings');
|
|||
</fieldset>
|
||||
</div>
|
||||
<!-- Spinner Template -->
|
||||
<img class="ldapSpinner hidden" src="<?php p(\OCP\Util::imagePath('core', 'loading.gif')); ?>">
|
||||
<img class="ldapSpinner hidden" src="<?php p(image_path('core', 'loading.gif')); ?>">
|
||||
</form>
|
||||
|
|
|
@ -33,7 +33,7 @@ script('core', [
|
|||
<?php endif; ?>
|
||||
<div id="message" class="hidden">
|
||||
<img class="float-spinner" alt=""
|
||||
src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>">
|
||||
src="<?php p(image_path('core', 'loading-dark.gif'));?>">
|
||||
<span id="messageText"></span>
|
||||
<!-- the following div ensures that the spinner is always inside the #message div -->
|
||||
<div style="clear: both;"></div>
|
||||
|
|
|
@ -34,7 +34,7 @@ script('core', 'lostpassword');
|
|||
</p>
|
||||
<input type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" />
|
||||
<p class="text-center">
|
||||
<img class="hidden" id="float-spinner" src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"/>
|
||||
<img class="hidden" id="float-spinner" src="<?php p(image_path('core', 'loading-dark.gif'));?>"/>
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
|
|
@ -170,15 +170,15 @@ if($_['passwordChangeSupported']) {
|
|||
<div id="clientsbox" class="section clientsbox">
|
||||
<h2><?php p($l->t('Get the apps to sync your files'));?></h2>
|
||||
<a href="<?php p($_['clients']['desktop']); ?>" rel="noreferrer" target="_blank">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('core', 'desktopapp.svg')); ?>"
|
||||
<img src="<?php print_unescaped(image_path('core', 'desktopapp.svg')); ?>"
|
||||
alt="<?php p($l->t('Desktop client'));?>" />
|
||||
</a>
|
||||
<a href="<?php p($_['clients']['android']); ?>" rel="noreferrer" target="_blank">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('core', 'googleplay.png')); ?>"
|
||||
<img src="<?php print_unescaped(image_path('core', 'googleplay.png')); ?>"
|
||||
alt="<?php p($l->t('Android app'));?>" />
|
||||
</a>
|
||||
<a href="<?php p($_['clients']['ios']); ?>" rel="noreferrer" target="_blank">
|
||||
<img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.svg')); ?>"
|
||||
<img src="<?php print_unescaped(image_path('core', 'appstore.svg')); ?>"
|
||||
alt="<?php p($l->t('iOS app'));?>" />
|
||||
</a>
|
||||
|
||||
|
|
Loading…
Reference in New Issue