zentaobiz.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. public function delete($moduleID, $null = null)
  3. {
  4. return $this->loadExtension('zentaobiz')->delete($moduleID);
  5. }
  6. public function getFeedbackTreeMenu($userFunc)
  7. {
  8. return $this->loadExtension('zentaobiz')->getFeedbackTreeMenu($userFunc);
  9. }
  10. public function getTicketTreeMenu($userFunc)
  11. {
  12. return $this->loadExtension('zentaobiz')->getTicketTreeMenu($userFunc);
  13. }
  14. public function getGroupTree($dimensionID = 0, $type = 'chart', $orderBy = 'id_desc', $pager = null)
  15. {
  16. return $this->loadExtension('zentaobiz')->getGroupTree($dimensionID, $type, $orderBy, $pager);
  17. }
  18. public function getGroupTreeMenu($dimensionID = 0, $type = 'chart', $orderBy = 'id_desc', $pager = null)
  19. {
  20. return $this->loadExtension('zentaobiz')->getGroupTreeMenu($dimensionID, $type, $orderBy, $pager);
  21. }
  22. public function getGroupStructure($dimensionID = 0, $groupID = 0, $type = 'chart')
  23. {
  24. return $this->loadExtension('zentaobiz')->getGroupStructure($dimensionID, $groupID, $type);
  25. }
  26. /**
  27. * @param int $dimensionID
  28. * @param int $parentGroup
  29. * @param int $grade
  30. * @param string $type
  31. */
  32. public function getGroupPairs($dimensionID = 0, $parentGroup = 0, $grade = 2, $type = 'chart')
  33. {
  34. return $this->loadExtension('zentaobiz')->getGroupPairs($dimensionID, $parentGroup, $grade, $type);
  35. }
  36. public function getPracticeTreeMenu($userFunc = '', $type = 'browse')
  37. {
  38. return $this->loadExtension('zentaobiz')->getPracticeTreeMenu($userFunc, $type);
  39. }