| Current Path : /home/azimutno/www/demo/administrator/components/com_phocamaps/tables/ |
| Current File : /home/azimutno/www/demo/administrator/components/com_phocamaps/tables/phocamapsmap.php |
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
class TablePhocaMapsMap extends JTable
{
function __construct( &$db ) {
parent::__construct( '#__phocamaps_map', 'id', $db );
}
function check(){
if (trim( $this->title ) == '') {
$this->setError( JText::_( 'COM_PHOCAMAPS_ERROR_TITLE_NOT_SET') );
return false;
}
if (empty($this->alias)) {
$this->alias = $this->title;
}
$this->alias = JApplication::stringURLSafe($this->alias);
if (trim(str_replace('-', '', $this->alias)) == '') {
$this->alias = JFactory::getDate()->format("Y-m-d-H-i-s");
}
return true;
}
}
?>