| Current Path : /home/pteabiscqq/www/administrator/components/com_quix/tables/ |
| Current File : /home/pteabiscqq/www/administrator/components/com_quix/tables/element.php |
<?php
/**
* @version CVS: 1.0.0
* @package com_quix
* @author ThemeXpert <info@themexpert.com>
* @copyright Copyright (C) 2015. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
use Joomla\Utilities\ArrayHelper;
/**
* element Table class
*
* @since 1.6
*/
class QuixTableElement extends JTable
{
/**
* Constructor
*
* @param JDatabase &$db A database connector object
*/
public function __construct(&$db)
{
parent::__construct('#__quix_elements', 'id', $db);
// Set the alias since the column is called state
$this->setColumnAlias('published', 'status');
}
/**
* Overloaded bind function to pre-process the params.
*
* @param array $array Named array
* @param mixed $ignore Optional array or list of parameters to ignore
*
* @return null|string null is operation was satisfactory, otherwise returns an error
*
* @see JTable:bind
* @since 1.5
*/
public function bind($array, $ignore = '')
{
$input = JFactory::getApplication()->input;
$task = $input->getString('task', '');
if (($task == 'save' || $task == 'apply') && (!JFactory::getUser()->authorise('core.edit.state', 'com_quix.element.'.$array['id']) && $array['status'] == 1))
{
$array['status'] = 0;
}
if (isset($array['params']) && is_array($array['params']))
{
$registry = new JRegistry;
$registry->loadArray($array['params']);
$array['params'] = (string) $registry;
}
return parent::bind($array, $ignore);
}
}