This repository has been archived by the owner on May 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Plugin.php
82 lines (67 loc) · 2.32 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
81
82
<?php
namespace Kanboard\Plugin\Timetable;
use DateTime;
use Kanboard\Core\Translator;
use Kanboard\Core\Plugin\Base;
use Kanboard\Core\Security\Role;
class Plugin extends Base
{
public function initialize()
{
$container = $this->container;
$this->applicationAccessMap->add('timetable', '*', Role::APP_ADMIN);
$this->applicationAccessMap->add('timetableday', '*', Role::APP_ADMIN);
$this->applicationAccessMap->add('timetableextra', '*', Role::APP_ADMIN);
$this->applicationAccessMap->add('timetableoff', '*', Role::APP_ADMIN);
$this->applicationAccessMap->add('timetableweek', '*', Role::APP_ADMIN);
$this->template->hook->attach('template:user:sidebar:actions', 'timetable:user/sidebar');
// Calculate time spent according to the timetable
$this->hook->on('model:subtask-time-tracking:calculate:time-spent', function($user_id, DateTime $start, DateTime $end) use ($container) {
return $container['timetable']->calculateEffectiveDuration($user_id, $start, $end);
});
// Split calendar events according to the timetable
$this->hook->on('model:subtask-time-tracking:calendar:events', function($user_id, array $events, $start, $end) use ($container) {
return $container['timetable']->calculateEventsIntersect($user_id, $events, $start, $end);
});
}
public function onStartup()
{
Translator::load($this->languageModel->getCurrentLanguage(), __DIR__.'/Locale');
}
public function getClasses()
{
return array(
'Plugin\Timetable\Model' => array(
'Timetable',
'TimetableDay',
'TimetableExtra',
'TimetableWeek',
'TimetableOff',
)
);
}
public function getPluginName()
{
return 'Timetable';
}
public function getPluginDescription()
{
return t('Timetable management for users');
}
public function getPluginAuthor()
{
return 'Frédéric Guillot';
}
public function getPluginVersion()
{
return '1.0.9';
}
public function getPluginHomepage()
{
return 'https://github.com/kanboard/plugin-timetable';
}
public function getCompatibleVersion()
{
return '<1.0.37';
}
}