API15:JTable/check
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
Generic check method
Syntax
check()
Returns
boolean True if the object is ok
Defined in
libraries/joomla/database/table.php
Importing
jimport( 'joomla.database.table' );
Source Body
function check() { return true; }
[Edit See Also] SeeAlso:JTable/check
Examples
function check() { if($this->title == ''){ $this->setError(JText::_('This record requires a title')); return false; } return true; }
<CodeExamplesForm />
