Giter VIP home page Giter VIP logo

kanboard_plugin_gantt's Introduction

Kanboard Plugin Gantt

โš  Early development version โš 

Kanboard Plugin for a better gantt diagram with links.

Plugin for https://github.com/kanboard/kanboard

Author

Installation

  • Decompress the archive in the plugins folder

or

  • Create a folder plugins/Gantt
  • Copy all files under this directory

Hooks

Popup

You can add more rows in task popup with your custom plugin. First, enable the Formatter hook with your custom method in your own Plugin.php :

<?php

$this->hook->on("formatter:gantt:format:task", [$this, "testGantt"]);

Method example :

<?php

/**
 * $data = array(
 *     'templateTask' => array, // contains data that will be send to popup
 *     'task' => array, // contains all data about task
 * )
 */
public function testGantt(array &$data)
{
    $data['templateTask']['assignee_name'] = $data['task']['assignee_name'];
}

Last thing, attach a hook to the render template :

<?php

// Add a row at the top of the table
$this->template->hook->attach(
  "template:gantt:task:popup:beginning-table",
  "YouPlugin:you/template"
);
// Add a row at the bottom of the table
$this->template->hook->attach(
  "template:gantt:task:popup:and-table",
  "YouPlugin:you/template"
);

Template example (please, keep the ${} format) :

<tr>
    <td><?= t('Assignee') ?></td>
    <td>${task.assignee_name}</td>
</tr>

kanboard_plugin_gantt's People

Contributors

timostahl avatar capataloutchoupika avatar honglonglong avatar

Stargazers

Olivier Maridat avatar

Watchers

Olivier Maridat avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.