mode_vcardAction.php 502 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. class mode_vcardClassAction extends inputAction{
  3. protected function savebefore($table, $arr, $id, $addbo){
  4. }
  5. protected function saveafter($table, $arr, $id, $addbo){
  6. }
  7. public function getgname()
  8. {
  9. $uid = $this->adminid;
  10. $num = 'gerenvcard_'.$uid.'';
  11. $rows= $this->option->getmnum($num);
  12. $row = array();
  13. foreach($rows as $k=>$rs){
  14. $row[] = array(
  15. 'name' => $rs['name'],
  16. 'value' => $rs['name'],
  17. );
  18. }
  19. return $row;
  20. }
  21. }
粤ICP备19079148号