| Current Path : /home/kamilrogam/2018/administrator/components/com_advancedmodules/tables/ |
| Current File : /home/kamilrogam/2018/administrator/components/com_advancedmodules/tables/advancedmodules.php |
<?php
/**
* @package Advanced Module Manager
* @version 7.11.0
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2019 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
use Joomla\CMS\Table\Table as JTable;
class AdvancedModulesTable extends JTable
{
public function __construct(&$db)
{
parent::__construct('#__advancedmodules', 'moduleid', $db);
}
protected function _getAssetName()
{
$k = $this->_tbl_key;
return 'com_modules.module.' . (int) $this->{$k};
}
protected function _getAssetTitle()
{
if (isset($this->_title))
{
return $this->_title;
}
$k = (int) $this->_tbl_key;
if (empty($this->{$k}))
{
return parent::_getAssetTitle();
}
$db = $this->getDbo();
$query = $db->getQuery(true)
->select('title')
->from('#__modules')
->where('id = ' . (int) $this->{$k});
$db->setQuery($query);
return $db->loadResult();
}
/**
* Method to get the parent asset id for the record
*
* @param JTable $table A JTable object for the asset parent
* @param integer $id
*
* @return integer
*/
protected function _getAssetParentId(JTable $table = null, $id = null)
{
$db = $this->getDbo();
$query = $db->getQuery(true)
->select('id')
->from('#__assets')
->where('name = ' . $db->quote('com_modules'));
$db->setQuery($query);
if ($assetId = $db->loadResult())
{
return $assetId;
}
return parent::_getAssetParentId($table, $id);
}
}
class AdvancedModulesTableAdvancedModules extends AdvancedModulesTable
{
}