parent
799364e57c
commit
d6774a0f64
|
@ -1,5 +1,5 @@
|
||||||
<form id="<?= $form->getId(); ?>" name="<?= $form->getName(); ?>" enctype="<?= $form->getEncType(); ?>" method="<?= $form->getMethod(); ?>" action="<?= $form->getAction(); ?>">
|
<form id="<?= $form->getId() ?>" name="<?= $form->getName() ?>" enctype="<?= $form->getEncType() ?>" method="<?= $form->getMethod() ?>" action="<?= $form->getAction() ?>">
|
||||||
<table class="action-table listing-table">
|
<table class="action-table listing-table" data-base-target="_next">
|
||||||
<thead>
|
<thead>
|
||||||
<th><?= $this->translate('Backend') ?></th>
|
<th><?= $this->translate('Backend') ?></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
|
@ -24,9 +24,9 @@
|
||||||
'class' => 'rowaction',
|
'class' => 'rowaction',
|
||||||
'title' => sprintf($this->translate('rEdit user backend %s'), $backendNames[$i])
|
'title' => sprintf($this->translate('rEdit user backend %s'), $backendNames[$i])
|
||||||
)
|
)
|
||||||
); ?>
|
) ?>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="icon-col text-right">
|
||||||
<?= $this->qlink(
|
<?= $this->qlink(
|
||||||
'',
|
'',
|
||||||
'config/removeuserbackend',
|
'config/removeuserbackend',
|
||||||
|
@ -36,42 +36,42 @@
|
||||||
'icon' => 'cancel',
|
'icon' => 'cancel',
|
||||||
'title' => sprintf($this->translate('Remove user backend %s'), $backendNames[$i])
|
'title' => sprintf($this->translate('Remove user backend %s'), $backendNames[$i])
|
||||||
)
|
)
|
||||||
); ?>
|
) ?>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right" data-base-target="_self">
|
<td class="icon-col text-right" data-base-target="_self">
|
||||||
<?php if ($i > 0): ?>
|
<?php if ($i > 0): ?>
|
||||||
<button type="submit" name="backend_newpos" class="link-like icon-only animated move-up" value="<?= sprintf(
|
<button type="submit" name="backend_newpos" class="link-button icon-only animated move-up" value="<?= sprintf(
|
||||||
'%s|%s',
|
'%s|%s',
|
||||||
$backendNames[$i],
|
$backendNames[$i],
|
||||||
$i - 1
|
$i - 1
|
||||||
); ?>" title="<?= $this->translate(
|
) ?>" title="<?= $this->translate(
|
||||||
'Move up in authentication order'
|
'Move up in authentication order'
|
||||||
); ?>" aria-label="<?= sprintf(
|
) ?>" aria-label="<?= sprintf(
|
||||||
$this->translate('Move user backend %s upwards'),
|
$this->translate('Move user backend %s upwards'),
|
||||||
$backendNames[$i]
|
$backendNames[$i]
|
||||||
); ?>">
|
) ?>">
|
||||||
<?= $this->icon('up-small'); ?>
|
<?= $this->icon('up-small') ?>
|
||||||
</button>
|
</button>
|
||||||
<?php endif; ?>
|
<?php endif ?>
|
||||||
<?php if ($i + 1 < count($backendNames)): ?>
|
<?php if ($i + 1 < count($backendNames)): ?>
|
||||||
<button type="submit" name="backend_newpos" class="link-like icon-only animated move-down" value="<?= sprintf(
|
<button type="submit" name="backend_newpos" class="link-button icon-only animated move-down" value="<?= sprintf(
|
||||||
'%s|%s',
|
'%s|%s',
|
||||||
$backendNames[$i],
|
$backendNames[$i],
|
||||||
$i + 1
|
$i + 1
|
||||||
); ?>" title="<?= $this->translate(
|
) ?>" title="<?= $this->translate(
|
||||||
'Move down in authentication order'
|
'Move down in authentication order'
|
||||||
); ?>" aria-label="<?= sprintf(
|
) ?>" aria-label="<?= sprintf(
|
||||||
$this->translate('Move user backend %s downwards'),
|
$this->translate('Move user backend %s downwards'),
|
||||||
$backendNames[$i]
|
$backendNames[$i]
|
||||||
); ?>">
|
) ?>">
|
||||||
<?= $this->icon('down-small'); ?>
|
<?= $this->icon('down-small') ?>
|
||||||
</button>
|
</button>
|
||||||
<?php endif; ?>
|
<?php endif ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endfor; ?>
|
<?php endfor ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?= $form->getElement($form->getTokenElementName()); ?>
|
<?= $form->getElement($form->getTokenElementName()) ?>
|
||||||
<?= $form->getElement($form->getUidElementName()); ?>
|
<?= $form->getElement($form->getUidElementName()) ?>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in New Issue