示例#1
0
 function populate()
 {
     $obj = new Websetting();
     $obj->get();
     return $obj;
 }
示例#2
0
 function websetting()
 {
     $this->check_login();
     $objs = new Websetting();
     $objs->get();
     $data = array('objs' => $objs);
     $this->load->view('admin/websetting', $data);
 }