28 lines
644 B
PHP
28 lines
644 B
PHP
|
|
<?
|
||
|
|
namespace profile\address\structure;
|
||
|
|
|
||
|
|
class eProfileAddress {
|
||
|
|
const CITY = 'city';
|
||
|
|
const STREET = 'street';
|
||
|
|
const HOUSE = 'house';
|
||
|
|
const ENTRANCE = 'entrance'; // Подъезд
|
||
|
|
const BUILDING = 'building'; // Корпус
|
||
|
|
const FLOOR = 'floor';
|
||
|
|
const FLAT = 'flat';
|
||
|
|
const INTERCOM = 'intercom';
|
||
|
|
|
||
|
|
|
||
|
|
static function getKeys(){
|
||
|
|
return [
|
||
|
|
self::CITY,
|
||
|
|
self::STREET,
|
||
|
|
self::HOUSE,
|
||
|
|
self::ENTRANCE,
|
||
|
|
self::BUILDING,
|
||
|
|
self::FLOOR,
|
||
|
|
self::FLAT,
|
||
|
|
self::INTERCOM,
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|