meraproject/module/profile/address/structure/eProfileAddress.php

28 lines
644 B
PHP
Raw Permalink Normal View History

<?
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,
];
}
}