first commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @author Tassos.gr <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\Conditions\Conditions;
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
use NRFramework\Conditions\Condition;
|
||||
|
||||
class Device extends Condition
|
||||
{
|
||||
/**
|
||||
* Returns the assignment's value
|
||||
*
|
||||
* @return string Device type
|
||||
*/
|
||||
public function value()
|
||||
{
|
||||
return $this->factory->getDevice();
|
||||
}
|
||||
|
||||
/**
|
||||
* A one-line text that describes the current value detected by the rule. Eg: The current time is %s.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getValueHint()
|
||||
{
|
||||
return parent::getValueHint() . ' ' . \JText::_('NR_ASSIGN_DEVICES_NOTE');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user