forked from kanboard/plugin-gantt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Plugin.php
77 lines (60 loc) · 2.57 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
<?php
namespace Kanboard\Plugin\Gantt;
use Kanboard\Core\Plugin\Base;
use Kanboard\Core\Security\Role;
use Kanboard\Core\Translator;
use Kanboard\Plugin\Gantt\Formatter\ProjectGanttFormatter;
use Kanboard\Plugin\Gantt\Formatter\TaskGanttFormatter;
class Plugin extends Base
{
public function initialize()
{
$this->route->addRoute('gantt/:project_id', 'TaskGanttController', 'show', 'plugin');
$this->route->addRoute('gantt/:project_id/sort/:sorting', 'TaskGanttController', 'show', 'plugin');
$this->projectAccessMap->add('ProjectGanttController', 'save', Role::PROJECT_MANAGER);
$this->projectAccessMap->add('TaskGanttController', 'save', Role::PROJECT_MEMBER);
$this->template->hook->attach('template:project-header:view-switcher', 'Gantt:project_header/views');
$this->template->hook->attach('template:project:dropdown', 'Gantt:project/dropdown');
$this->template->hook->attach('template:project-list:menu:after', 'Gantt:project_list/menu');
$this->template->hook->attach('template:config:sidebar', 'Gantt:config/sidebar');
// $this->hook->on('template:layout:js', array('template' => 'plugins/Gantt/Assets/chart.js'));
$this->hook->on('template:layout:js', array('template' => 'plugins/Gantt/Assets/frappe-gantt.js'));
$this->hook->on('template:layout:css', array('template' => 'plugins/Gantt/Assets/frappe-gantt.css'));
$this->hook->on('template:layout:js', array('template' => 'plugins/Gantt/Assets/gantt.js'));
$this->hook->on('template:layout:css', array('template' => 'plugins/Gantt/Assets/gantt.css'));
$this->container['projectGanttFormatter'] = $this->container->factory(function ($c) {
return new ProjectGanttFormatter($c);
});
$this->container['taskGanttFormatter'] = $this->container->factory(function ($c) {
return new TaskGanttFormatter($c);
});
}
public function onStartup()
{
Translator::load($this->languageModel->getCurrentLanguage(), __DIR__.'/Locale');
}
public function getPluginName()
{
return 'Gantt';
}
public function getPluginDescription()
{
return t('Gantt Frappe for Kanboard');
}
public function getPluginAuthor()
{
return 'Frédéric Guillot, Nassim Ourami';
}
public function getPluginVersion()
{
return '1.0.6';
}
public function getPluginHomepage()
{
return 'https://github.com/Trickscenique/plugin-gantt';
}
public function getCompatibleVersion()
{
return '>1.2.3';
}
}