21 lines
504 B
PHP
21 lines
504 B
PHP
<?php
|
|
public function getFields($module, $action, $getRealOptions = true, $datas = array())
|
|
{
|
|
return $this->loadExtension('flow')->getFields($module, $action, $getRealOptions, $datas);
|
|
}
|
|
|
|
public function saveNotice($id)
|
|
{
|
|
return $this->loadExtension('flow')->saveNotice($id);
|
|
}
|
|
|
|
public function update($id)
|
|
{
|
|
return $this->loadExtension('flow')->update($id);
|
|
}
|
|
|
|
public function isClickable($action, $methodName)
|
|
{
|
|
return $this->loadExtension('flow')->isClickable($action, $methodName);
|
|
}
|