-
Notifications
You must be signed in to change notification settings - Fork 4
/
Api.php
67 lines (54 loc) · 1.5 KB
/
Api.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
<?php
namespace thebuggenie\modules\api;
use thebuggenie\core\framework;
/**
* The Bug Genie API module
*
* @author
* @version 0.1
* @license http://opensource.org/licenses/MPL-2.0 Mozilla Public License 2.0 (MPL 2.0)
* @package thebuggenie/modules/api
* @subpackage core
*/
/**
* The Bug Genie API module
*
* @package thebuggenie/modules/api
* @subpackage core
*
* @Table(name="\thebuggenie\core\entities\tables\Modules")
*/
class Api extends \thebuggenie\core\entities\Module
{
const VERSION = '0.1';
protected $_name = 'api';
protected $_longname = 'External API module';
protected $_description = 'Enables integration with third party tools and plugins';
protected $_module_config_title = 'API';
protected $_module_config_description = 'Set up the API module from this section';
protected $_has_account_settings = false;
/**
* Return an instance of this module
*
* @return Api
*/
public static function getModule()
{
return framework\Context::getModule('api');
}
protected function _initialize()
{
}
protected function _addListeners()
{
}
protected function _install($scope)
{
}
protected function _loadFixtures($scope)
{
}
protected function _uninstall()
{
}
}