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
|
<?php
/**
* MantisBT plugin
*
* Copyright 2010-2011, Franck Villaume - Capgemini
* Copyright 2010, Antoine Mercadal - Capgemini
* http://fusionforge.org
*
* This file is part of FusionForge. FusionForge 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 Licence, or (at your option)
* any later version.
*
* FusionForge 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 FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
global $mantisbt;
global $mantisbtConf;
global $username;
global $password;
$noteEdit;
try {
/* do not recreate $clientSOAP object if already created by other pages */
if (!isset($clientSOAP))
$clientSOAP = new SoapClient($mantisbtConf['url']."/api/soap/mantisconnect.php?wsdl", array('trace'=>true, 'exceptions'=>true));
$defect = $clientSOAP->__soapCall('mc_issue_get', array("username" => $username, "password" => $password, "issue_id" => $idBug));
if ($view == "editNote"){
foreach($defect->notes as $key => $note){
if ($note->id == $idNote){
$noteEdit = $note;
break;
}
}
}
} catch (SoapFault $soapFault) {
echo '<div class="warning" >'. _('Technical error occurs during data retrieving:'). ' ' .$soapFault->faultstring.'</div>';
$errorPage = true;
}
if (!isset($errorPage)){
if($view == "editNote"){
$labelboxTitle = _('Modify note');
$actionform = 'updateNote';
$labelButtonSubmit = _('Update');
} else {
$labelboxTitle = _('Add note');
$actionform = 'addNote';
$labelButtonSubmit = _('Submit');
}
echo '<div id="add_edit_note">';
echo '<form Method="POST" Action="?type='.$type.'&group_id='.$group_id.'&pluginname='.$mantisbt->name.'&idBug='.$defect->id.'&idNote='.$idNote.'&action='.$actionform.'&view=viewIssue">';
echo '<table>';
echo '<tr>';
(isset($noteEdit->text))? $note_value = $noteEdit->text : $note_value = '';
echo '<td><textarea name="edit_texte_note" style="width:99%;" rows=12>'.$note_value.'</textarea></td>';
echo '</tr>';
echo '</table>';
echo '<input type=button onclick="this.form.submit();this.disabled=true;" value="'.$labelButtonSubmit.'">';
echo '</form>';
echo '</div>';
}
|