API15:JTable/check
From Joomla! Documentation
< API15:JTable(Difference between revisions)
(New page: ===Description===
Generic check method
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{...) |
Mattlaughs (Talk | contribs) (→Examples) |
||
| Line 44: | Line 44: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
| + | <code> | ||
| + | function check() { | ||
| + | |||
| + | if($this->title == ''){ | ||
| + | $this->setError(JText::_('This record requires a title')); | ||
| + | return false; | ||
| + | } | ||
| + | return true; | ||
| + | } | ||
| + | |||
| + | </code> | ||
Revision as of 11:09, 1 August 2010
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
<CodeExamplesForm />
function check() {
if($this->title == ){ $this->setError(JText::_('This record requires a title')); return false; } return true; }
