ops.php 733 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. public function getPairsByProduct($productID, $branch = 0)
  3. {
  4. return $this->loadExtension('ops')->getPairsByProduct($productID, $branch);
  5. }
  6. /**
  7. * @param int $releaseID
  8. * @param mixed[] $stories
  9. */
  10. public function linkStory($releaseID, $stories)
  11. {
  12. return $this->loadExtension('ops')->linkStory($releaseID, $stories);
  13. }
  14. /**
  15. * @param int $releaseID
  16. * @param int $storyID
  17. */
  18. public function unlinkStory($releaseID, $storyID)
  19. {
  20. return $this->loadExtension('ops')->unlinkStory($releaseID, $storyID);
  21. }
  22. /**
  23. * @param int $releaseID
  24. * @param mixed[] $storyIdList
  25. */
  26. public function batchUnlinkStory($releaseID, $storyIdList)
  27. {
  28. return $this->loadExtension('ops')->batchUnlinkStory($releaseID, $storyIdList);
  29. }