PHP Classes

File: Template/task/remove.php

Recommend this page to a friend!
  Classes of kiran   MetaMagik   Template/task/remove.php   Download  
File: Template/task/remove.php
Role: Example script
Content type: text/plain
Description: Example script
Class: MetaMagik
Plugin to add custom form fields for Kanboard
Author: By
Last change:
Date: 3 years ago
Size: 687 bytes
 

Contents

Class file image Download
<div class="page-header">
    <h2><?= t('Remove Metadata') ?></h2>
</div>

<div class="confirm">
    <p class="alert alert-info">
        <?= t('Do you really want to remove this metadata?') ?>
</p>

    <p><strong><?= $key; ?></strong></p>

    <div class="form-actions">
        <?= $this->url->link(t('Yes'), 'MetadataController', 'removeTask', ['plugin' => 'metaMagik', 'task_id' => $task['id'], 'project_id' => $task['project_id'], 'key' => $key], true, 'btn btn-red') ?>
<?= t('or') ?>
<?= $this->url->link(t('cancel'), 'MetadataController', 'task', ['plugin' => 'metaMagik', 'task_id' => $task['id'], 'project_id' => $task['project_id']]) ?>
</div>
</div>