XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
formhiddentoken.php
Go to the documentation of this file.
1 <?php
21 defined('XOOPS_ROOT_PATH') or die('Restricted access');
22 
27 {
33  function XoopsFormHiddenToken($name = 'XOOPS_TOKEN', $timeout = 0)
34  {
35  $this->XoopsFormHidden($name . '_REQUEST', $GLOBALS['xoopsSecurity']->createToken($timeout, $name));
36  }
37 }
38 
39 ?>