Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/plugins/system/nrframework/NRFramework/Conditions/Conditions/
Upload File :
Current File : /home/digilove/public_html/plugins/system/nrframework/NRFramework/Conditions/Conditions/Browser.php

<?php

/**
 * @author          Tassos.gr <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;

defined('_JEXEC') or die;

use NRFramework\Conditions\Condition;

class Browser extends Condition
{
    /**
	 *  Returns the assignment's value
	 * 
	 *  @return string Browser name
	 */
	public function value()
	{
		return $this->factory->getBrowser()['name'];
    }
}