cancel-button.php
- Pfad:
src/View/content-pipeline/partials/cancel-button.php - Namespace: -
- Zeilen: 13 | Größe: 279 Bytes
- Geändert: 2025-12-27 12:20:57 | Gescannt: 2025-12-31 10:22:15
Code Hygiene Score: 100
- Dependencies: 100 (25%)
- LOC: 100 (20%)
- Methods: 100 (20%)
- Secrets: 100 (15%)
- Classes: 100 (10%)
- Magic Numbers: 100 (10%)
Keine Issues gefunden.
Code
<?php
declare(strict_types=1);
// @responsibility: HTMX-Partial für Pipeline-Cancel-Button
?>
<button type="button"
class="btn btn--danger btn--small"
<?= ($disabled ?? false) ? 'disabled' : '' ?>>
<?= htmlspecialchars($label ?? 'Abbrechen') ?>
</button>