| Current Path : /var/www/plugins/system/nrframework/NRFramework/SmartTags/ |
| Current File : /var/www/plugins/system/nrframework/NRFramework/SmartTags/RandomID.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;
defined('_JEXEC') or die('Restricted access');
class RandomID extends SmartTag
{
/**
* Returns an 8-character hexadecimal random ID. Example: 03bc431d0d605ce4
*
* @return string
*/
public function getRandomID()
{
return bin2hex(\JCrypt::genRandomBytes(8));
}
}