meraproject/module/profile/address/structure/eProfileAddress.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

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