PHP Classes

File: wsdl_config

Recommend this page to a friend!
  Classes of Satish Kumar   exportPlanner2Mantisbt   wsdl_config   Download  
File: wsdl_config
Role: Configuration script
Content type: text/plain
Description: Configuration file : Specify common variable
Class: exportPlanner2Mantisbt
Export Planner project data to Mantis bug tracker
Author: By
Last change:
Date: 15 years ago
Size: 1,014 bytes
 

Contents

Class file image Download
<?php
//Configuration file

//Description: Specify common variable

// Created By : Satish Kumar(satish.prg@gmail.com)

//Date: Jan 6, 2009


// Pull in the NuSOAP code

require_once('nusoap-0.7.3/lib/nusoap.php');

// Provide MANTIS WSDL URL

//define('WSDL_URL','http://localhost/mantis/dashboard/api/soap/mantisconnect.php?wsdl');

define('WSDL_URL','http://localhost/mantis/mantisbt116/api/soap/mantisconnect.php?wsdl');



//Mantis connecters details

define('MANTIS_USERNAME','administrator');

define('MANTIS_PASSWORD','root');



//Database connection settings

define('hostname','localhost');

define('dbname','bugtracker');
define('username','root');

define('password','123456');



//Define custom field mapping

//For mantis_custom_field_string_table /mantis_bug_table

//Mantis_custom_field_table

define('startdate','1');

define('finishdate','2');

define('workinghours','3');

define('percentcomplete','4');

define('scheduling','5');

?>