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
<?php
namespace hji\membership\models\data;
class Address
{
protected $street;
protected $city;
protected $state;
protected $zip;
protected $deliveryLine;
protected $fullAddress;
function __construct($address)
{
$address = (array)$address;
foreach ($address as $k => $v)
{
if (property_exists($this, $k))
{
$this->{$k} = $v;
}
}
}
function __get($property)
{
if (property_exists($this, $property))
{
return $this->$property;
}
}
function getStreet()
{
return $this->deliveryLine;
}
function getCity()
{
return $this->city;
}
function getState()
{
return $this->state;
}
function getDeliveryLine()
{
return $this->deliveryLine;
}
function getFullAddress()
{
if (!$this->fullAddress)
{
$commaSeparated[] = $this->deliveryLine;
$commaSeparated[] = $this->city;
$commaSeparated[] = $this->state;
$commaSeparated = array_filter($commaSeparated);
if (!empty($commaSeparated) && $this->zip)
{
$this->fullAddress = implode(', ', $commaSeparated) . ' ' . $this->zip;
}
}
return $this->fullAddress;
}
}