userModel.php 328 B

12345678910111213141516
  1. <?php
  2. /**
  3. 通讯录显示用户模块的
  4. */
  5. class agent_userClassModel extends agentModel
  6. {
  7. protected function agentrows($rows, $rowd, $uid){
  8. foreach($rowd as $k=>$rs){
  9. unset($rows[$k]['id']);
  10. if($this->agentnum=='vcard')unset($rows[$k]['uid']);//个人通讯录不要头像
  11. }
  12. return $rows;
  13. }
  14. }
粤ICP备19079148号