JTable/hit: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m preparing for archive only |
||
| Line 60: | Line 60: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=hit | category=hit | ||
category=JTable | category=JTable | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:10, 25 March 2017
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