API15:JUser/setLastVisit
From Joomla! Documentation
Description
Pass through method to the table for setting the last visit date
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setLastVisit($timestamp=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $timestamp | null | $timestamp The timestamp, defaults to 'now' |
Returns
boolean True on success
Defined in
libraries/joomla/user/user.php
Importing
jimport( 'joomla.user.user' );
Source Body
function setLastVisit($timestamp=null)
{
// Create the user table object
$table =& $this->getTable();
$table->load($this->id);
return $table->setLastVisit($timestamp);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples