Exemplo n.º 1
0
 public function updateUserType($id)
 {
     $this->authority(10);
     $type = Util::fetch_post('type');
     $user_table = new UserTable();
     $user_table->update_type($id, $type);
     Util::go_back();
 }