API15:JTableUser/setLastVisit
From Joomla! Documentation
Description
Updates last visit time of user
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setLastVisit($timeStamp=null, $id=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $timeStamp | null | The timestamp, defaults to 'now' |
| $id | null |
Returns
boolean False if an error occurs
Defined in
libraries/joomla/database/table/user.php
Importing
jimport( 'joomla.database.table.user' );
Source Body
function setLastVisit( $timeStamp=null, $id=null )
{
// check for User ID
if (is_null( $id )) {
if (isset( $this )) {
$id = $this->id;
} else {
// do not translate
jexit( 'WARNMOSUSER' );
}
}
// if no timestamp value is passed to functon, than current time is used
$date =& JFactory::getDate($timeStamp);
// updates user lastvistdate field with date and time
$query = 'UPDATE '. $this->_tbl
. ' SET lastvisitDate = '.$this->_db->Quote($date->toMySQL())
. ' WHERE id = '. (int) $id
;
$this->_db->setQuery( $query );
if (!$this->_db->query()) {
$this->setError( $this->_db->getErrorMsg() );
return false;
}
return true;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples