whereAction.php 315 B

12345678910111213
  1. <?php
  2. class whereClassAction extends ActionNot
  3. {
  4. public function setwhereAction()
  5. {
  6. $modeid = (int)$this->get('modeid');
  7. $farr = $this->db->getrows('[Q]flow_element',"`mid`='$modeid' and `iszb`=0 and `iszs`=1",'`fields`,`name`,`fieldstype`','sort,id');
  8. $this->assign('farr', $farr);
  9. }
  10. }
粤ICP备19079148号