PHP Classes

File: Template/config/gantt.php

Recommend this page to a friend!
  Classes of kiran   Kanboard Gantt plugin   Template/config/gantt.php   Download  
File: Template/config/gantt.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Kanboard Gantt plugin
Display Gantt charts in Kanboard
Author: By
Last change:
Date: 3 years ago
Size: 656 bytes
 

Contents

Class file image Download
<div class="page-header">
    <h2><?= t('Gantt settings') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('plugin' => 'Gantt')) ?>" autocomplete="off">

    <?= $this->form->csrf() ?>

    <fieldset>
        <legend><?= t('Gantt chart') ?></legend>
        <?= $this->form->radios('gantt_task_sort', array(
               
'board' => t('Sort tasks by position'),
               
'date' => t('Sort tasks by date'),
            ),
           
$values
       
) ?>
</fieldset>

    <div class="form-actions">
        <button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
    </div>
</form>