コード例 #1
0
ファイル: TrackerTest.php プロジェクト: nickl-/tuleap
 public function exportToXML($root, &$xmlMapping, &$index)
 {
     $xmlMapping['F' . $index] = $this->getId();
     return parent::exportToXML($root, $xmlMapping, $index);
 }
コード例 #2
0
ファイル: TrackerTest.php プロジェクト: rinodung/tuleap
 public function exportToXml(SimpleXMLElement $root, &$xmlMapping)
 {
     $xmlMapping['F' . $this->getId()] = $this->getId();
     return parent::exportToXML($root, $xmlMapping);
 }
コード例 #3
0
ファイル: TrackerTest.php プロジェクト: pombredanne/tuleap
 public function exportToXml(SimpleXMLElement $root, &$xmlMapping, $project_export_context, UserXMLExporter $user_xml_exporter)
 {
     $xmlMapping['F' . $this->getId()] = $this->getId();
     return parent::exportToXML($root, $xmlMapping, $project_export_context);
 }