mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\AdminError $adminError
|
|
*/
|
|
?>
|
|
<nav id="actions-sidebar">
|
|
<ul class="nav-horizontal nav-smaller">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Html->link(__('List Admin Errors'), ['action' => 'index']) ?></li>
|
|
<li><?= $this->Html->link(__('List State Users'), ['controller' => 'StateUsers', 'action' => 'index']) ?></li>
|
|
<li><?= $this->Html->link(__('New State User'), ['controller' => 'StateUsers', 'action' => 'add']) ?></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="adminErrors form large-9 medium-8 columns content">
|
|
<?= $this->Form->create($adminError) ?>
|
|
<fieldset>
|
|
<legend><?= __('Add Admin Error') ?></legend>
|
|
<?php
|
|
echo $this->Form->control('state_user_id', ['options' => $stateUsers]);
|
|
echo $this->Form->control('controller');
|
|
echo $this->Form->control('action');
|
|
echo $this->Form->control('state');
|
|
echo $this->Form->control('msg');
|
|
echo $this->Form->control('details');
|
|
?>
|
|
</fieldset>
|
|
<?= $this->Form->button(__('Submit')) ?>
|
|
<?= $this->Form->end() ?>
|
|
</div>
|