feedback.php 906 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @param mixed[]|int $objectID
  4. * @param string $objectType
  5. */
  6. public function getList($objectType, $objectID)
  7. {
  8. return $this->loadExtension('feedback')->getList($objectType, $objectID);
  9. }
  10. /**
  11. * @param string $objectType
  12. * @param int $objectID
  13. * @param string $actionType
  14. * @param string $extra
  15. */
  16. public function getRelatedFields($objectType, $objectID, $actionType = '', $extra = '')
  17. {
  18. return $this->loadExtension('feedback')->getRelatedFields($objectType, $objectID, $actionType, $extra);
  19. }
  20. /**
  21. * @param string|mixed[] $desc
  22. * @param object $action
  23. */
  24. public function printAction($action, $desc = '')
  25. {
  26. return $this->loadExtension('feedback')->printAction($action, $desc);
  27. }
  28. /**
  29. * @param string|mixed[] $desc
  30. * @param object $action
  31. */
  32. public function renderAction($action, $desc = '')
  33. {
  34. return $this->loadExtension('feedback')->renderAction($action, $desc);
  35. }