| [ Index ] |
PHP Cross Reference of MantisBT |
[Summary view] [Print] [Text view]
1 <?php 2 # MantisBT - A PHP based bugtracking system 3 4 # Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge. 5 6 # MantisBT is free software: you can redistribute it and/or modify 7 # it under the terms of the GNU General Public License as published by 8 # the Free Software Foundation, either version 2 of the License, or 9 # (at your option) any later version. 10 # 11 # MantisBT is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 # GNU General Public License for more details. 15 # 16 # You should have received a copy of the GNU General Public License 17 # along with MantisBT. If not, see <http://www.gnu.org/licenses/>. 18 19 /** 20 * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org 21 * @copyright Copyright (C) 2002 - 2011 MantisBT Team - mantisbt-dev@lists.sourceforge.net 22 * @link http://www.mantisbt.org 23 * @package MantisBT 24 */ 25 26 /** 27 * MantisBT Core Plugin 28 * Used to give other plugins a permanent core plugin to 'require' for compatibility. 29 * Can/should not be used as a base class. 30 * @package MantisBT 31 * @subpackage classes 32 */ 33 final class MantisCorePlugin extends MantisPlugin { 34 function register() { 35 $this->name = 'MantisBT Core'; 36 $this->description = 'Core plugin API for the Mantis Bug Tracker.'; 37 38 $this->version = MANTIS_VERSION; 39 40 $this->author = 'MantisBT Team'; 41 $this->contact = 'mantisbt-dev@lists.sourceforge.net'; 42 $this->url = 'http://www.mantisbt.org'; 43 } 44 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Jul 28 15:48:31 2011 | Cross-referenced by PHPXref 0.7 |