remove.php 757 B

1234567891011121314151617
  1. <div class="page-header">
  2. <h2><?= t('Remove Encrypted Content') ?></h2>
  3. </div>
  4. <div class="confirm">
  5. <p class="alert alert-info">
  6. <?= t('Do you really want to remove this Encrypted Content?') ?>
  7. <strong><?= t('Reference') ?>: <?= $name; ?></strong>
  8. </p>
  9. <div class="form-actions">
  10. <?= $this->url->link(t('Yes'), 'EncryptedContentController', 'removeTask', ['plugin' => 'encryptedContent', 'task_id' => $task['id'], 'project_id' => $task['project_id'], 'name' => $name], true, 'btn btn-red') ?>
  11. <?= t('or') ?>
  12. <?= $this->url->link(t('Cancel'), 'EncryptedContentController', 'task', ['plugin' => 'encryptedContent', 'task_id' => $task['id'], 'project_id' => $task['project_id']]) ?>
  13. </div>
  14. </div>