blob: 48a9d29912c9475586a2ff415c67530a024706be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?php
namespace Kanboard\Core\Event;
use Kanboard\Model\TaskModel;
use Kanboard\Model\TaskLinkModel;
/**
* Event Manager
*
* @package event
* @author Frederic Guillot
*/
class EventManager
{
/**
* Extended events
*
* @access private
* @var array
*/
private $events = array();
/**
* Add new event
*
* @access public
* @param string $event
* @param string $description
* @return EventManager
*/
public function register($event, $description)
{
$this->events[$event] = $description;
return $this;
}
/**
* Get the list of events and description that can be used from the user interface
*
* @access public
* @return array
*/
public function getAll()
{
$events = array(
TaskLinkModel::EVENT_CREATE_UPDATE => t('Task link creation or modification'),
TaskModel::EVENT_MOVE_COLUMN => t('Move a task to another column'),
TaskModel::EVENT_UPDATE => t('Task modification'),
TaskModel::EVENT_CREATE => t('Task creation'),
TaskModel::EVENT_OPEN => t('Reopen a task'),
TaskModel::EVENT_CLOSE => t('Closing a task'),
TaskModel::EVENT_CREATE_UPDATE => t('Task creation or modification'),
TaskModel::EVENT_ASSIGNEE_CHANGE => t('Task assignee change'),
TaskModel::EVENT_DAILY_CRONJOB => t('Daily background job for tasks'),
TaskModel::EVENT_MOVE_SWIMLANE => t('Move a task to another swimlane'),
);
$events = array_merge($events, $this->events);
asort($events);
return $events;
}
}
|