id = $intId; $this->name = $strName; $this->add = $strAdd; $this->city = $strCity; $this->state = $strState; $this->zip = $strZip; $this->country = $strCountry; $this->poc_email = $strPOC_Email; $this->poc_name = $strPOC_Name; $this->poc_phone = $strPOC_Phone; } /** * Getter function for the site id * * @return integer */ public function get_Id() { return $this->id; } /** * Setter function for site ID * * @param integer $id_in */ public function set_ID($id_in) { $this->id = $id_in; } /** * Getter function for the site name * * @return string */ public function get_Name() { return $this->name; } /** * Setter function for the site name * * @param string $str_Name */ public function set_Name($str_Name) { $this->name = $str_Name; } /** * Getter function for the site address * * @return string */ public function get_Address() { return $this->add; } /** * Setter function for the site address * * @param string $str_Address */ public function set_Address($str_Address) { $this->add = $str_Address; } /** * Getter function for the site city * * @return string */ public function get_City() { return $this->city; } /** * Setter function for the site city * * @param string $str_City */ public function set_City($str_City) { $this->city = $str_City; } /** * Getter function for the site state * * @return string */ public function get_State() { return $this->state; } /** * Setter function for the site state * * @param string $str_State */ public function set_State($str_State) { $this->state = $str_State; } /** * Getter function for the site zip * * @return string */ public function get_Zip() { return $this->zip; } /** * Setter function for the site zip * * @param string $str_Zip */ public function set_Zip($str_Zip) { $this->zip = $str_Zip; } /** * Getter function for the site country * * @return string */ public function get_Country() { return $this->country; } /** * Setter function for the site country * * @param string $str_Country */ public function set_Country($str_Country) { $this->country = $str_Country; } /** * Getter function for the POC E-mail * * @return string */ public function get_POC_Email() { return $this->poc_email; } /** * Setter function for the POC Email * * @param string $str_POC_Email */ public function set_POC_Email($str_POC_Email) { $this->poc_email = $str_POC_Email; } /** * Getter function for the POC Name * * @return string */ public function get_POC_Name() { return $this->poc_name; } /** * Setter for the POC Name * * @param string $str_POC_Name */ public function set_POC_Name($str_POC_Name) { $this->poc_name = $str_POC_Name; } /** * Getter for the POC Phone * * @return string */ public function get_POC_Phone() { return $this->poc_phone; } /** * Setter for the POC Phone * * @param string $str_POC_Phone */ public function set_POC_Phone($str_POC_Phone) { $this->poc_phone = $str_POC_Phone; } /** * Getter function for preformated <option> tag * * @param boolean $selectedSite * @return string */ public function get_Option($selectedSite = null) { return ""; } }