Skip to content

InfotelGLPI/tasklists

Repository files navigation

Plugin Tasklists for GLPI

Plugin tasklists

This plugin is on Transifex - Help us to translate : https://www.transifex.com/infotelGLPI/GLPI_tasklists/

See wiki for use it ? https://github.com/InfotelGLPI/tasklists/wiki

Adding a management of tasks & a kanban. This plugin adds in GLPI, an interface to add tasks & manage them into a kanban

Last features :

  • Clone task
  • Add comments to tasks
  • See authors tasks filter
  • See archived tasks filter
  • See in progress tasks filter
  • Send notifications for add / change / delete task
  • Use richtext on tasks
  • Add templates by context
  • Add entity pre-selection
  • Use a default Backlog from list
  • Link to tickets
  • Preference : context by default
  • See percentage of completion from tasks
  • Order States
  • Add context to States
  • Add color to States
  • Minimize closed tasks
  • Can be used with mail collector to create tasks
  • Add notification for revive user in charge
  • Add min - max by state
  • Add notifications to comments

For GLPI versions <9.1, for use it with mail collector you must to modify "inc/rulemailcollector.class.php" file, into "executeActions" fonction, into switch : switch ($action->fields["action_type"]), add a default case :

default:
   //plugins actions
   $executeaction = clone $this;
   $output = $executeaction->executePluginsActions($action, $output, $params);
   break;