-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
40 lines (35 loc) · 883 Bytes
/
Plugin.php
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
<?php
namespace Kanboard\Plugin\TaskRemoveDate;
use Kanboard\Core\Plugin\Base;
use Kanboard\Plugin\TaskRemoveDate\Action\TaskRemoveDate;
class Plugin extends Base
{
public function initialize()
{
$this->actionManager->register(new TaskRemoveDate($this->container));
}
public function getPluginName()
{
return 'TaskRemoveDate';
}
public function getPluginDescription()
{
return t('Remove due date when tasks are moved between columns');
}
public function getPluginAuthor()
{
return 'Michael Krecek & David Morlitz';
}
public function getPluginVersion()
{
return '1.0.0';
}
public function getPluginHomepage()
{
return 'https://github.com/dmorlitz/kanboard-TaskRemoveDate';
}
public function getCompatibleVersion()
{
return '>=1.0.44';
}
}