/
home
/
assocoweys
/
assoco
/
plugins
/
system
/
nrframework
/
NRFramework
/
Conditions
/
Conditions
/
Geo
/
Upload File
HOME
<?php /** * @author Tassos Marinos <info@tassos.gr> * @link https://www.tassos.gr * @copyright Copyright © 2024 Tassos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ namespace NRFramework\Conditions\Conditions\Geo; defined('_JEXEC') or die; class City extends GeoBase { /** * Shortcode aliases for this Condition */ public static $shortcode_aliases = ['geo.city']; /** * Returns the assignment's value * * @return string City name */ public function value() { return $this->geo->getCity(); } }