zentaopro.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. public function roadmap($conditions = '')
  3. {
  4. return $this->loadExtension('zentaopro')->roadmap($conditions);
  5. }
  6. public function productInvest($conditions = '', $productID = 0, $productStatus = 'normal', $productType = 'normal')
  7. {
  8. return $this->loadExtension('zentaopro')->productInvest($conditions, $productID, $productStatus, $productType);
  9. }
  10. public function testcase($productID = 0)
  11. {
  12. return $this->loadExtension('zentaopro')->testcase($productID);
  13. }
  14. public function casesrun($productID = 0)
  15. {
  16. return $this->loadExtension('zentaopro')->casesrun($productID);
  17. }
  18. public function build($productID = 0)
  19. {
  20. return $this->loadExtension('zentaopro')->build($productID);
  21. }
  22. public function storyLinkedBug($productID = 0, $moduleID = 0)
  23. {
  24. return $this->loadExtension('zentaopro')->storyLinkedBug($productID, $moduleID);
  25. }
  26. public function workSummary($begin = 0, $end = 0, $dept = 0, $recTotal = 0, $recPerPage = 20, $pageID = 1)
  27. {
  28. return $this->loadExtension('zentaopro')->workSummary($begin, $end, $dept, $recTotal, $recPerPage, $pageID);
  29. }
  30. public function workAssignSummary($begin = 0, $end = 0, $dept = 0, $recTotal = 0, $recPerPage = 20, $pageID = 1)
  31. {
  32. return $this->loadExtension('zentaopro')->workAssignSummary($begin, $end, $dept, $recTotal, $recPerPage, $pageID);
  33. }
  34. public function bugSummary($dept = 0, $begin = 0 , $end = 0)
  35. {
  36. return $this->loadExtension('zentaopro')->bugSummary($dept, $begin, $end);
  37. }
  38. public function bugAssignSummary($dept = 0, $begin = 0 , $end = 0)
  39. {
  40. return $this->loadExtension('zentaopro')->bugAssignSummary($dept, $begin, $end);
  41. }