zentaomax.php 980 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * @param int $objectID
  4. * @param string $begin
  5. * @param string $end
  6. * @param int $productID
  7. * @param string $method
  8. */
  9. public function assignTesttaskReportData($objectID, $begin = '', $end = '', $productID = 0, $task = null, $method = 'create')
  10. {
  11. return $this->loadExtension('zentaomax')->assignTesttaskReportData($objectID, $begin, $end, $productID, $task, $method);
  12. }
  13. /**
  14. * @param int $objectID
  15. * @param string $objectType
  16. * @param string $extra
  17. * @param string $begin
  18. * @param string $end
  19. * @param int $executionID
  20. */
  21. public function assignProjectReportDataForCreate($objectID, $objectType, $extra, $begin = '', $end = '', $executionID = 0)
  22. {
  23. return $this->loadExtension('zentaomax')->assignProjectReportDataForCreate($objectID, $objectType, $extra, $begin, $end, $executionID);
  24. }
  25. /**
  26. * @param object $report
  27. */
  28. public function buildReportDataForView($report)
  29. {
  30. return $this->loadExtension('zentaomax')->buildReportDataForView($report);
  31. }