| Current Path : /home/chauffn/vuzelia/2023/plugins/system/nrframework/NRFramework/Assignments/ |
| Current File : /home/chauffn/vuzelia/2023/plugins/system/nrframework/NRFramework/Assignments/Region.php |
<?php
/**
* @author Tassos Marinos <info@tassos.gr>
* @link http://www.tassos.gr
* @copyright Copyright © 2021 Tassos Marinos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
namespace NRFramework\Assignments;
defined('_JEXEC') or die;
use NRFramework\Assignments\GeoIPBase;
class Region extends GeoIPBase
{
/**
* Returns the assignment's value
*
* @return string Region codes
*/
public function value()
{
return $this->getRegionCodes();
}
/**
* Get list of all ISO 3611 Country Region Codes
*
* @return array
*/
private function getRegionCodes()
{
$regionCodes = [];
$record = $this->geo->getRecord();
if ($record === false || is_null($record))
{
return $regionCodes;
}
// Skip if no regions found
if (!$regions = $record->subdivisions)
{
return $regionCodes;
}
foreach ($regions as $key => $region)
{
// Prepend country isocode to the region code
$regionCodes[] = $record->country->isoCode . '-' . $region->isoCode;
}
return $regionCodes;
}
}