API16:JTableCategory/check
From Joomla! Documentation
Description
Override check function
Syntax
check()
Returns
boolean
Defined in
libraries/joomla/database/table/category.php
Importing
jimport( 'joomla.database.table.category' );
Source Body
public function check()
{
// Check for a title.
if (trim($this->title) == '') {
$this->setError(JText::sprintf('MUST_CONTAIN_A_TITLE', JText::_('Category')));
return false;
}
if (empty($this->alias)) {
$this->alias = strtolower($this->title);
}
$this->alias = JApplication::stringURLSafe($this->alias);
if (trim(str_replace('-','',$this->alias)) == '') {
$this->alias = JFactory::getDate()->toFormat('%Y-%m-%d-%H-%M-%S');
}
return true;
}
Examples
Code Examples