API15:JTable/hit
From Joomla! Documentation
Description
Description
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
hit($oid=null, $log=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $oid | null | |
| $log | false |
Defined in
libraries/joomla/database/table.php
Importing
jimport( 'joomla.database.table' );
Source Body
function hit( $oid=null, $log=false )
{
if (!in_array( 'hits', array_keys($this->getProperties()) )) {
return;
}
$k = $this->_tbl_key;
if ($oid !== null) {
$this->$k = intval( $oid );
}
$query = 'UPDATE '. $this->_tbl
. ' SET hits = ( hits + 1 )'
. ' WHERE '. $this->_tbl_key .'='. $this->_db->Quote($this->$k);
$this->_db->setQuery( $query );
$this->_db->query();
$this->hits++;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples