| Current Path : /home/jeromecohp/www/plugins/system/nrframework/NRFramework/Conditions/Conditions/Joomla/ |
| Current File : /home/jeromecohp/www/plugins/system/nrframework/NRFramework/Conditions/Conditions/Joomla/UserID.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\Joomla;
defined('_JEXEC') or die;
use NRFramework\Conditions\Condition;
class UserID extends Condition
{
/**
* Shortcode aliases for this Condition
*/
public static $shortcode_aliases = ['user.id'];
/**
* Returns the assignment's value
*
* @return int User ID
*/
public function value()
{
return $this->user->id;
}
}