Files
xinhu/webmain/flow/where/whereAction.php
2022-08-14 16:47:40 +08:00

13 lines
315 B
PHP

<?php
class whereClassAction extends ActionNot
{
public function setwhereAction()
{
$modeid = (int)$this->get('modeid');
$farr = $this->db->getrows('[Q]flow_element',"`mid`='$modeid' and `iszb`=0 and `iszs`=1",'`fields`,`name`,`fieldstype`','sort,id');
$this->assign('farr', $farr);
}
}