forked from AppStateESS/InternshipInventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFaculty.php
310 lines (266 loc) · 6.41 KB
/
Faculty.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php
namespace Intern;
/**
* Faculty
*
* Represents a faculty member for a department.
*
* @author Jeremy Booker [email protected]
* @package Hms
*/
class Faculty extends Model implements DbStorable {
public $id;
private $username;
private $firstName;
private $lastName;
private $phone;
private $fax;
private $streetAddress1;
private $streetAddress2;
private $city;
private $state;
private $zip;
/**
* Constructor
*/
public function __construct($id, $username, $firstName, $lastName, $phone, $fax, $streetAddress1, $streetAddress2, $city, $state, $zip)
{
$this->setId($id);
$this->setUsername($username);
$this->setFirstName($firstName);
$this->setLastName($lastName);
$this->setPhone($phone);
$this->setFax($fax);
$this->setStreetAddress1($streetAddress1);
$this->setStreetAddress2($streetAddress2);
$this->setCity($city);
$this->setState($state);
$this->setZip($zip);
}
public function extractVars()
{
$vars = array();
$vars['id'] = $this->getId();
$vars['username'] = $this->getUsername();
$vars['first_name'] = $this->getFirstName();
$vars['last_name'] = $this->getLastName();
$vars['phone'] = $this->getPhone();
$vars['fax'] = $this->getFax();
$vars['street_address1'] = $this->getStreetAddress1();
$vars['street_address2'] = $this->getStreetAddress2();
$vars['city'] = $this->getCity();
$vars['state'] = $this->getState();
$vars['zip'] = $this->getZip();
return $vars;
}
/**
* Returns the database table name for this class.
* @see DbStorable::getTableName()
*/
public static function getTableName(){
return 'intern_faculty';
}
/**
* Returns an array of columns to be used in a CSV export.
* @return Array
*/
public function getCSV()
{
$csv = array();
$csv['Faculty Super. First Name'] = $this->getFirstName();
$csv['Faculty Super. Last Name'] = $this->getLastName();
$csv['Faculty Super. Phone'] = $this->getPhone();
$csv['Faculty Super. Email'] = $this->getUsername();
return $csv;
}
/**
* Shortcut method for getting first and last name
* concatenated together with a space
* @return string
*/
public function getFullName()
{
return $this->getFirstName() . ' ' . $this->getLastName();
}
/***************************
* Getter / Setter Methods *
*/
/**
* Returns this objects database id
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Sets this objects database id.
* @param integer $id
*/
public function setId($id)
{
$this->id = $id;
}
/**
* Returns the username portion of the faculty member's
* email address.
* @return string
*/
public function getUsername()
{
return $this->username;
}
/**
* Sets the username portion of the faculty member's
* email addres.
* @param string $user
*/
public function setUsername($user)
{
$this->username = $user;
}
/**
* Returns the first name
* @return string
*/
public function getFirstName()
{
return $this->firstName;
}
/**
* Sets the first name
* @param string $first
*/
public function setFirstName($first)
{
$this->firstName = $first;
}
/**
* Returns the last name
* @return string
*/
public function getLastName()
{
return $this->lastName;
}
/**
* Sets the last name
* @param string $last
*/
public function setLastName($last)
{
$this->lastName = $last;
}
/**
* Returns the faculty member's phone number.
* @return string
*/
public function getPhone()
{
return $this->phone;
}
/**
* Sets the faculty member's phone number.
* @param string $phone
*/
public function setPhone($phone)
{
$this->phone = $phone;
}
/**
* Returns this faculty member's fax number.
* @return string
*/
public function getFax()
{
return $this->fax;
}
/**
* Sets this faculty member's fax number
* @param string $fax
*/
public function setFax($fax)
{
$this->fax = $fax;
}
/**
* Returns line 1 of this faculty member's address.
* @return string
*/
public function getStreetAddress1()
{
return $this->streetAddress1;
}
/**
* Sets line 1 of this faculty member's address.
* @param string $addr
*/
public function setStreetAddress1($addr)
{
$this->streetAddress1 = $addr;
}
/**
* Returns line 2 of this faculty member's address.
* @return string
*/
public function getStreetAddress2()
{
return $this->streetAddress2;
}
/**
* Sets line 2 of this faculty member's address.
* @param string $addr
*/
public function setStreetAddress2($addr)
{
$this->streetAddress2 = $addr;
}
/**
* Returns the city portion of this faculty member's address.
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* Sets the city portion of this faculty member's address.
* @param string $city
*/
public function setCity($city)
{
$this->city = $city;
}
/**
* Retunrs the state portion of this faculty member's address.
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* Sets the state portion of this faculty member's address.
* @param string $state
*/
public function setState($state)
{
$this->state = $state;
}
/**
* Returns the zip code portion of this faculty member's address.
* @return string
*/
public function getZip()
{
return $this->zip;
}
/**
* Sets the zip code portion of this faculty member's address.
* @param integer $zip
*/
public function setZip($zip)
{
$this->zip = $zip;
}
}