-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.php
47 lines (37 loc) · 893 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
41
42
43
44
45
46
47
<?php
namespace Kanboard\Plugin\GrabScroll;
use Kanboard\Core\Plugin\Base;
class Plugin extends Base
{
public function initialize()
{
$this->hook->on('template:layout:js', array('template' => 'plugins/GrabScroll/Assets/scroll.js'));
}
public function onStartup()
{
}
public function getPluginName()
{
return 'GrabScroll';
}
public function getPluginDescription()
{
return t('Scroll a board horizontally by grabbing it.');
}
public function getPluginAuthor()
{
return 'Ramón Cahenzli with code by ToddWebDev';
}
public function getPluginVersion()
{
return '0.2.3';
}
public function getPluginHomepage()
{
return 'https://github.com/psy-q/kanboard-plugin-grabscroll';
}
public function getCompatibleVersion()
{
return '>1.2.9';
}
}