JUser/setLastVisit
From Joomla! Documentation
< API16:JUser
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Pass through method to the table for setting the last visit date
Syntax[edit]
setLastVisit($timestamp=null)
Parameter Name | Default Value | Description |
---|---|---|
$timestamp | null | $timestamp The timestamp, defaults to 'now' |
Returns[edit]
boolean True on success
Defined in[edit]
libraries/joomla/user/user.php
Importing[edit]
jimport( 'joomla.user.user' );
Source Body[edit]
function setLastVisit($timestamp=null)
{
// Create the user table object
$table = &$this->getTable();
$table->load($this->id);
return $table->setLastVisit($timestamp);
}
Examples[edit]
Code Examples[edit]