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) |
||
| (2 intermediate revisions by one user not shown) | |||
| Line 34: | Line 34: | ||
===Examples=== | ===Examples=== | ||
| + | <source lang="php">function check() { | ||
| + | if($this->title == ''){ | ||
| + | $this->setError(JText::_('This record requires a title')); | ||
| + | return false; | ||
| + | } | ||
| + | return true; | ||
| + | }</source> | ||
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
Revision as of 11:13, 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
function check() { if($this->title == ''){ $this->setError(JText::_('This record requires a title')); return false; } return true; }
<CodeExamplesForm />
