.
/**
* XML Import / Export Plugin
* @package MantisPlugin
* @subpackage MantisPlugin
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
* @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net
* @link http://www.mantisbt.org
*/
/**
* requires MantisPlugin.class.php
*/
require_once( config_get( 'class_path' ) . 'MantisPlugin.class.php' );
/**
* XmlImportExportPlugin Class
*/
class XmlImportExportPlugin 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_page";
$this->version = '1.0';
$this->requires = array(
'MantisCore' => '1.2.0',
);
$this->author = 'MantisBT Team';
$this->contact = 'mantisbt-dev@lists.sourceforge.net';
$this->url = 'http://www.mantisbt.org';
}
/**
* Default plugin configuration.
*/
public function config() {
return array(
"import_threshold" => ADMINISTRATOR,
"export_threshold" => DEVELOPER,
);
}
/**
* Plugin hooks
* @return array
*/
function hooks( ) {
$hooks = array(
'EVENT_MENU_MANAGE' => 'import_issues_menu',
'EVENT_MENU_FILTER' => 'export_issues_menu',
);
return $hooks;
}
function import_issues_menu( ) {
return array( '' . plugin_lang_get( 'import' ) . '', );
}
function export_issues_menu( ) {
if( !access_has_project_level( plugin_config_get( 'export_threshold' ) ) ) {
return array();
}
return array( '' . plugin_lang_get( 'export' ) . '', );
}
function install() {
$result = extension_loaded("xmlreader") && extension_loaded("xmlwriter");
if ( ! $result ) {
#\todo returning false should trigger some error reporting, needs rethinking error_api
error_parameters( plugin_lang_get( 'error_no_xml' ) );
trigger_error( ERROR_PLUGIN_INSTALL_FAILED, ERROR );
}
return $result;
}
}