API16:JUser/setLastVisit
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Pass through method to the table for setting the last visit date
Description:JUser/setLastVisit
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); }
[Edit See Also] SeeAlso:JUser/setLastVisit
Examples
<CodeExamplesForm />
