-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinspection_class.php
75 lines (74 loc) · 1.36 KB
/
inspection_class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
class inspection{
private $id;
private $name;
private $name2;
private $address;
private $address2;
private $cityst;
private $phone;
private $zip;
private $lat;
private $long;
function set_id($new_id){
$this->id = $new_id;
}
function get_id(){
return $this->id;
}
function set_name($new_name){
$this->name = $new_name;
}
function get_name(){
return $this->name;
}
function set_name2($new_name2){
$this->name2 = $new_name2;
}
function get_name2(){
return $this->name2;
}
function set_address($new_address){
$this->address = $new_address;
}
function get_address(){
return $this->address;
}
function set_address2($new_address2){
$this->address2 = $new_address2;
}
function get_address2(){
return $this->address2;
}
function set_cityst($new_cityst){
$this->cityst = $new_cityst;
}
function get_cityst(){
return $this->cityst;
}
function set_phone($new_phone){
$this->phone = $new_phone;
}
function get_phone(){
return $this->phone;
}
function set_zip($new_zip){
$this->zip = $new_zip;
}
function get_zip(){
return $this->zip;
}
function set_lat($new_lat){
$this->lat = $new_lat;
}
function get_lat(){
return $this->lat;
}
function set_long($new_long){
$this->long = $new_long;
}
function get_long(){
return $this->long;
}
}
?>