1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00

Доработано гео поле

This commit is contained in:
Denis Shakhov 2015-10-09 23:27:25 +07:00
parent c405dab761
commit 5e22fff995

View file

@ -544,12 +544,14 @@ class ActionSettings extends Action
/**
* Определяем гео-объект
*/
if (getRequest('geo_city')) {
$oGeoObject = $this->Geo_GetGeoObject('city', getRequestStr('geo_city'));
} elseif (getRequest('geo_region')) {
$oGeoObject = $this->Geo_GetGeoObject('region', getRequestStr('geo_region'));
} elseif (getRequest('geo_country')) {
$oGeoObject = $this->Geo_GetGeoObject('country', getRequestStr('geo_country'));
$aGeo = getRequest('geo');
if (isset($aGeo['city']) && $aGeo['city']) {
$oGeoObject = $this->Geo_GetGeoObject('city', (int) $aGeo['city']);
} elseif (isset($aGeo['region']) && $aGeo['region']) {
$oGeoObject = $this->Geo_GetGeoObject('region', (int) $aGeo['region']);
} elseif (isset($aGeo['country']) && $aGeo['country']) {
$oGeoObject = $this->Geo_GetGeoObject('country', (int) $aGeo['country']);
} else {
$oGeoObject = null;
}