| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- class flow_dcs_groupClassModel extends flowModel
- {
- protected $flowcompanyidfieds = 'none';
- public function initModel()
- {
- }
- public function flowrsreplace($rs, $lx=0)
- {
- // if ($rs['level'] == 1) {
- // $rs['name'] = "<font style='font-weight:800; color:#000;'>".$rs['name']."</font>";
- // } else {
- // $rs['name'] = str_repeat('<img src="images/white.gif" class="icons">', $rs['level'])."|-".$rs['name'];
- // }
- if(!empty($rs['icon']))
- $rs['icon'] = "<img src='".$rs['icon']."' width='30' height='30'>";
- return $rs;
- }
- protected function flowbillwhere($lx, $uid)
- {
- return [
- 'order'=>'sort',
- ];
- }
- }
|