API16:JUser/setLastVisit
From Joomla! Documentation
Description
Pass through method to the table for setting the last visit date
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);
}
Examples
Code Examples