API16:JTableExtension/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
Overloaded check function
Description:JTableExtension/check
Syntax
check()
Returns
boolean True if the object is ok
Defined in
libraries/joomla/database/table/extension.php
Importing
jimport( 'joomla.database.table.extension' );
Source Body
function check() { // check for valid name if (trim($this->name) == '' || trim($this->element) == '') { $this->setError(JText::sprintf('MUST_CONTAIN_A_TITLE', JText::_('Extension'))); return false; } return true; }
[Edit See Also] SeeAlso:JTableExtension/check
Examples
<CodeExamplesForm />
