API15:JTable/hit
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
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
<CodeExamplesForm />
