bizext.php 695 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Record finished task effort.
  4. *
  5. * @access public
  6. * @return bool
  7. */
  8. public function recordFinished()
  9. {
  10. return $this->loadExtension('bizext')->recordFinished();
  11. }
  12. /**
  13. * Fix repo prefix.
  14. *
  15. * @access public
  16. * @return void
  17. */
  18. public function fixRepo()
  19. {
  20. return $this->loadExtension('bizext')->fixRepo();
  21. }
  22. /**
  23. * Fix report for add unique key.
  24. *
  25. * @access public
  26. * @return bool
  27. */
  28. public function fixReport()
  29. {
  30. return $this->loadExtension('bizext')->fixReport();
  31. }
  32. public function fixReportLang()
  33. {
  34. return $this->loadExtension('bizext')->fixReportLang();
  35. }
  36. public function checkURAndSR()
  37. {
  38. return $this->loadExtension('bizext')->checkURAndSR();
  39. }