| 1234567891011121314151617181920212223242526 |
- <?php
- class flow_dcs_groupClassModel extends flowModel
- {
- protected $flowcompanyidfieds = 'none';
- public function initModel()
- {
- }
- public function flowrsreplace($rs, $lx=0)
- {
- if(!empty($rs['icon']))
- $rs['icon'] = "<img src='".$rs['icon']."' width='30' height='30'>";
- return $rs;
- }
- protected function flowbillwhere($lx, $uid)
- {
- return [
- 'order'=>'sort, id, pid',
- ];
- }
- }
|