forked from pcadeot/kanboard-bigboard
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPlugin.php
80 lines (67 loc) · 2.67 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
74
75
76
77
78
79
80
<?php
namespace Kanboard\Plugin\Bigboard;
use Kanboard\Core\Plugin\Base;
use Kanboard\Core\Translator;
class Plugin extends Base
{
public function initialize()
{
$this->template->hook->attach('template:project-list:menu:before', 'bigboard:Bigboard');
$this->template->hook->attach('template:header:dropdown', 'bigboard:header/user_dropdown');
$this->template->hook->attach('template:dashboard:page-header:menu', 'bigboard:header/bigboard_header_link');
$this->template->hook->attach('template:project-header:view-switcher', 'bigboard:header/bigboard_header_link');
if ($this->request->getStringParam("plugin") == "Bigboard") {
$this->template->setTemplateOverride('board/table_container', 'bigboard:board/table_container');
$this->template->setTemplateOverride('board/table_tasks', 'bigboard:board/table_tasks');
$this->template->setTemplateOverride('board/table_private', 'bigboard:board/table_private');
$this->hook->on('template:layout:js', ['template' => 'plugins/Bigboard/Asset/js/BoardDragAndDrop.js']);
$this->hook->on('template:layout:js', ['template' => 'plugins/Bigboard/Asset/js/BoardPolling.js']);
$this->hook->on('template:layout:js', ['template' => 'plugins/Bigboard/Asset/js/bigboard-selected.js']);
$this->hook->on('template:layout:js', ['template' => 'plugins/Bigboard/Asset/js/bigboard-collapsed.js']);
$this->hook->on('template:layout:css', ['template' => 'plugins/Bigboard/Asset/css/bigboard.css']);
}
}
public function onStartup()
{
Translator::load($this->languageModel->getCurrentLanguage(), __DIR__.'/Locale');
}
public function getClasses()
{
return [
'Plugin\Bigboard' => [
'UserSession',
],
'Plugin\Bigboard\Controller' => [
'Bigboard',
'BoardAjaxController',
],
'Plugin\Bigboard\Model' => [
'BigboardModel',
],
];
}
public function getPluginName()
{
return 'Bigboard';
}
public function getPluginDescription()
{
return t('BigBoard: a Kanboard that displays selected multiple projects');
}
public function getPluginAuthor()
{
return 'BlueTeck, Thomas Stinner, Pierre Cadeot, PapeCoding, Chaosmeister, Jake G';
}
public function getPluginVersion()
{
return '1.5.2';
}
public function getPluginHomepage()
{
return 'https://github.com/BlueTeck/kanboard_plugin_bigboard';
}
public function getCompatibleVersion()
{
return '>=1.2.12';
}
}