Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/modx/ |
<?php /** * @package modx */ /** * Represents activity by a user in the system. * * @property int $internalKey The ID of the User referred to * @property string $username The username of the User referred to * @property int $lasthit The last time this User accessed * @property int $id Deprecated * @property string $action The modAction this User last accessed * @property string $ip The IP of the User * * @see modUser * @package modx */ class modActiveUser extends xPDOObject { /** * Overrides xPDOObject::__construct to set the _cacheFlag var for this class to false. * * @param xPDO $xpdo Reference to the xPDO|modX instance */ function __construct(& $xpdo) { parent :: __construct($xpdo); $this->_cacheFlag= false; } }