mode_wzglAction.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * 此文件是流程模块【wzgl.位置管理】对应控制器接口文件。
  4. */
  5. class mode_wzglClassAction extends inputAction{
  6. /**
  7. * 重写函数:保存前处理,主要用于判断是否可以保存
  8. * $table String 对应表名
  9. * $arr Array 表单参数
  10. * $id Int 对应表上记录Id 0添加时,大于0修改时
  11. * $addbo Boolean 是否添加时
  12. * return array('msg'=>'错误提示内容','rows'=> array()) 可返回空字符串,或者数组 rows 是可同时保存到数据库上数组
  13. */
  14. protected function savebefore($table, $arr, $id, $addbo){
  15. }
  16. /**
  17. * 重写函数:保存后处理,主要保存其他表数据
  18. * $table String 对应表名
  19. * $arr Array 表单参数
  20. * $id Int 对应表上记录Id
  21. * $addbo Boolean 是否添加时
  22. */
  23. protected function saveafter($table, $arr, $id, $addbo){
  24. }
  25. public function address_element()
  26. {
  27. $flow_set = m('flow_set')->getone("`table` = 'home_nav'");
  28. $mid = $flow_set['id'];
  29. $flow_element = m('flow_element')->getone("`mid` = $mid and `fields`='type'");
  30. $arr = explode(',',$flow_element['data']);
  31. $result = [];
  32. foreach ($arr as $key=> $item){
  33. $result[] = array("name"=>$item,"value"=>$item);
  34. }
  35. return $result;
  36. }
  37. }