Files
breadcrumb-the-shire/pages/admin/permissions/edit(default).phtml

93 lines
2.9 KiB
PHTML
Raw Normal View History

2026-02-04 23:31:53 +01:00
<?php
/**
* @var array<int, string> $errors
* @var array $form
* @var array $permission
* @var bool $canUpdatePermission
* @var bool $canDeletePermission
2026-02-04 23:31:53 +01:00
*/
use MintyPHP\Session;
$canUpdatePermission = (bool) ($canUpdatePermission ?? false);
$canDeletePermission = (bool) ($canDeletePermission ?? false);
$isReadOnly = !$canUpdatePermission;
$titleText = $titleText ?? ($isReadOnly ? t('View permission') : t('Edit permission'));
2026-02-04 23:31:53 +01:00
?>
<div class="app-details-container">
<section>
2026-02-11 19:28:12 +01:00
<?php
$titlebar = [
'title' => $titleText,
'backHref' => 'admin/permissions',
'backTitle' => t('Cancel'),
'actions' => $canUpdatePermission ? [
[
'form' => 'permission-form',
'name' => 'action',
'value' => 'save',
'class' => 'secondary outline',
'label' => t('Save'),
],
[
'form' => 'permission-form',
'name' => 'action',
'value' => 'save_close',
'class' => 'primary',
'label' => t('Save & close'),
],
] : [],
];
require templatePath('partials/app-details-titlebar.phtml');
2026-02-11 19:28:12 +01:00
?>
2026-03-04 15:56:58 +01:00
<?php
$validationSummaryErrors = $validationSummaryErrors ?? ($errors ?? []);
require templatePath('partials/app-details-validation-summary.phtml');
?>
2026-02-04 23:31:53 +01:00
<?php
$values = $form ?? $permission ?? [];
$isReadOnly = !$canUpdatePermission;
2026-02-04 23:31:53 +01:00
$detailsOpenAll = true;
$isReadOnly = $isReadOnly ?? false;
$showDangerZone = $canDeletePermission;
$dangerZoneDeleteFormId = $showDangerZone ? 'permission-delete-form' : '';
$dangerZoneWarning = t('This will permanently delete this permission.');
$dangerZoneActionLabel = t('Delete permission');
2026-02-04 23:31:53 +01:00
require __DIR__ . '/_form.phtml';
?>
<?php if ($showDangerZone): ?>
<form
id="permission-delete-form"
method="post"
action="admin/permissions/delete/<?php e((string) ($permission['id'] ?? '')); ?>"
hidden
2026-03-04 15:56:58 +01:00
data-detail-confirm-message="<?php e(t('Delete this permission?')); ?>"
data-detail-action-kind="delete"
>
<?php Session::getCsrfInput(); ?>
</form>
2026-02-11 19:28:12 +01:00
<?php endif; ?>
2026-02-04 23:31:53 +01:00
</section>
<aside id="app-details-aside-section">
<div class="app-details-aside-section">
<hgroup>
<h2><?php e($values['key'] ?? ''); ?></h2>
<p><?php e(t('Permission')); ?></p>
</hgroup>
2026-02-11 19:28:12 +01:00
<div class="badge-list">
<?php if ((string) ($values['active'] ?? '1') === '0'): ?>
<span class="badge" data-variant="danger"><?php e(t('Inactive')); ?></span>
<?php else: ?>
<span class="badge" data-variant="success"><?php e(t('Active')); ?></span>
<?php endif; ?>
<?php if (!empty($values['is_system'])): ?>
<span class="badge" data-variant="neutral"><?php e(t('System')); ?></span>
<?php endif; ?>
</div>
2026-02-04 23:31:53 +01:00
<hr>
</div>
</aside>
2026-02-11 19:28:12 +01:00
</div>