flow.php 545 B

1234567891011121314151617181920
  1. <?php
  2. public function getFields($module, $action, $getRealOptions = true, $datas = array(), $ui = 0, $groupID = null)
  3. {
  4. return $this->loadExtension('flow')->getFields($module, $action, $getRealOptions, $datas, $ui, $groupID);
  5. }
  6. public function saveNotice($id)
  7. {
  8. return $this->loadExtension('flow')->saveNotice($id);
  9. }
  10. public function update($id)
  11. {
  12. return $this->loadExtension('flow')->update($id);
  13. }
  14. public function isClickable($action, $methodName)
  15. {
  16. return $this->loadExtension('flow')->isClickable($action, $methodName);
  17. }