-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlugin.php
73 lines (60 loc) · 1.3 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
namespace Kanboard\Plugin\TaskVote;
use Kanboard\Core\Plugin\Base;
use Kanboard\Core\Translator;
/**
* TaskVote
*
* @author Martin Middeke
*/
class Plugin extends Base
{
public function initialize()
{
$this->template->hook->attach('template:board:task:icons', 'TaskVote:board/task/icons');
}
public function onStartup()
{
Translator::load($this->languageModel->getCurrentLanguage(), __DIR__.'/Locale');
}
public function getClasses()
{
return array(
'Plugin\TaskVote\Model' => array(
'TaskVoteModel'
),
);
}
public function getHelpers()
{
return array(
'Plugin\TaskVote\Helper' => array(
'TaskVoteHelper'
)
);
}
public function getPluginName()
{
return 'TaskVote';
}
public function getPluginDescription()
{
return t('Voting for Tasks');
}
public function getPluginAuthor()
{
return 'Martin Middeke';
}
public function getPluginVersion()
{
return '0.0.2';
}
public function getPluginHomepage()
{
return 'https://github.com/busfreak/TaskVote';
}
public function getCompatibleVersion()
{
return '>=1.0.42';
}
}