Your IP : 10.10.0.253


Current Path : /var/www/plugins/system/nrframework/NRFramework/SmartTags/
Upload File :
Current File : /var/www/plugins/system/nrframework/NRFramework/SmartTags/IP.php

<?php

/**
 * @author          Tassos.gr
 * @link            https://www.tassos.gr
 * @copyright       Copyright © 2023 Tassos All Rights Reserved
 * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/

namespace NRFramework\SmartTags;

use NRFramework\User;

defined('_JEXEC') or die('Restricted access');

class IP extends SmartTag
{
    /**
     * Returns the IP address of the visitor.
     * 
     * @return  string
     */
    public function getIP()
    {
        return User::getIP();
    }
}