forked from mantisbt-plugins/Activity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActivity.php
91 lines (77 loc) · 2.54 KB
/
Activity.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
83
84
85
86
87
88
89
90
91
<?php
# MantisBT - a php based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Activity plugin
* @package MantisPlugin
* @subpackage MantisPlugin
* @link http://www.mantisbt.org
*/
/**
* requires MantisPlugin.class.php
*/
require_once(config_get( 'class_path' ) . 'MantisPlugin.class.php');
/**
* Activity Class
*/
class ActivityPlugin extends MantisPlugin {
/**
* A method that populates the plugin information and minimum requirements.
*/
function register() {
$this->name = plugin_lang_get( 'title' );
$this->description = plugin_lang_get( 'description' );
$this->page = 'config';
$this->version = '1.0';
$this->requires = array('MantisCore' => '1.2.0',);
$this->author = 'Sergey Marchenko';
$this->contact = '[email protected]';
$this->url = 'http://zetabyte.ru';
}
/**
* Default plugin configuration.
*/
function hooks() {
$hooks = array('EVENT_MENU_MAIN' => 'activity_menu',
'EVENT_LAYOUT_RESOURCES' => 'resources');
return $hooks;
}
function activity_menu() {
return array('<a href="' . plugin_page( 'activity_page' ) . '">' . plugin_lang_get( 'activity' ) . '</a>',);
}
function init() {
$t_path = config_get_global( 'plugin_path' ) . plugin_get_current() . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR;
set_include_path( get_include_path() . PATH_SEPARATOR . $t_path );
}
function config() {
return array('show_status_legend' => ON,
'limit_bug_notes' => 500,
'day_count' => 1,
'show_avatar' => OFF,
'notify_login' => 'admin',
'notify_subject' => 'Mantis report: {user}, {date}',
'notify_project' => 0,
'notify_users' => array(),
'notify_note_users' => array(),
'notify_use_html' => OFF,
'notify_path' => ''
);
}
/**
* Create the resource link to load the jQuery library.
*/
function resources( $p_event ) {
return '<link rel="stylesheet" type="text/css" href="' . plugin_file( 'activity.css' ) . '"/>';
}
}