API16:JTableUpdate/find
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 |
Syntax
find($options=Array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $options | Array() |
Defined in
libraries/joomla/database/table/update.php
Importing
jimport( 'joomla.database.table.update' );
Source Body
function find($options=Array()) { $dbo =& JFactory::getDBO(); $where = Array(); foreach($options as $col=>$val) { $where[] = $col .' = '. $dbo->Quote($val); } $query = 'SELECT update_id FROM #__updates WHERE '. implode(' AND ', $where); $dbo->setQuery($query); return $dbo->loadResult(); }
[Edit See Also] SeeAlso:JTableUpdate/find
Examples
<CodeExamplesForm />
