Your IP : 216.73.216.219


Current Path : /home/chauffn/vuzelia/2023/plugins/system/nrframework/NRFramework/SmartTags/
Upload File :
Current File : /home/chauffn/vuzelia/2023/plugins/system/nrframework/NRFramework/SmartTags/Client.php

<?php

/**
 * @author          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\SmartTags;

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

use NRFramework\WebClient;

class Client extends SmartTag
{
    /**
     * Returns the device
     * 
     * @return  string
     */
    public function getDevice()
    {
        return WebClient::getDeviceType();
    }

    /**
     * Returns the OS
     * 
     * @return  string
     */
    public function getOS()
    {
        return WebClient::getOS();
    }

    /**
     * Returns the browser
     * 
     * @return  string
     */
    public function getBrowser()
    {
        return WebClient::getBrowser()['name'];
    }
    
    /**
     * Returns the current user agent
     * 
     * @return  string
     */
    public function getUserAgent()
    {
        return WebClient::getClient()->userAgent;
    }

    /**
     * Returns the visitor's unique ID
     *
     * @return string
     */
    public function getID()
    {
        return \NRFramework\VisitorToken::getInstance()->get();
    }
}