150 lines
3.8 KiB
PHP
150 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* @package JEM
|
|
* @copyright (C) 2013-2024 joomlaeventmanager.net
|
|
* @copyright (C) 2005-2009 Christoph Lukes
|
|
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Table\Table;
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
/**
|
|
* JEM Group Table
|
|
*
|
|
* @package JEM
|
|
*
|
|
*/
|
|
class JemTableGroup extends Table
|
|
{
|
|
public function __construct(&$db)
|
|
{
|
|
parent::__construct('#__jem_groups', 'id', $db);
|
|
}
|
|
|
|
/** overloaded check function
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function check()
|
|
{
|
|
// Not typed in a category name?
|
|
if (trim($this->name ) == '') {
|
|
$this->setError(Text::_('COM_JEM_ADD_GROUP_NAME'));
|
|
return false;
|
|
}
|
|
|
|
// Set alias
|
|
//$this->alias = JemHelper::stringURLSafe($this->alias);
|
|
//if (empty($this->alias)) {
|
|
// $this->alias = JemHelper::stringURLSafe($this->title);
|
|
//}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Overload the store method for the Venue table.
|
|
*
|
|
*/
|
|
public function store($updateNulls = false)
|
|
{
|
|
return parent::store($updateNulls);
|
|
}
|
|
|
|
public function bind($array, $ignore = '')
|
|
{
|
|
// in here we are checking for the empty value of the checkbox
|
|
|
|
//don't override without calling base class
|
|
return parent::bind($array, $ignore);
|
|
}
|
|
|
|
/**
|
|
* Method to set the publishing state for a row or list of rows in the database
|
|
* table. The method respects checked out rows by other users and will attempt
|
|
* to checkin rows that it can after adjustments are made.
|
|
*
|
|
* @param mixed $pks An array of primary key values to update. If not
|
|
* set the instance property value is used. [optional]
|
|
* @param integer $state The publishing state. eg. [0 = unpublished, 1 = published] [optional]
|
|
* @param integer $userId The user id of the user performing the operation. [optional]
|
|
*
|
|
* @return boolean True on success.
|
|
*/
|
|
function publish($pks = null, $state = 1, $userId = 0)
|
|
{
|
|
// Initialise variables.
|
|
$k = $this->_tbl_key;
|
|
|
|
// Sanitize input.
|
|
\Joomla\Utilities\ArrayHelper::toInteger($pks);
|
|
$userId = (int) $userId;
|
|
$state = (int) $state;
|
|
|
|
// If there are no primary keys set check to see if the instance key is set.
|
|
if (empty($pks)) {
|
|
if ($this->$k) {
|
|
$pks = array((int)$this->$k);
|
|
} else {
|
|
// Nothing to set publishing state on, return false.
|
|
$this->setError(Text::_('JLIB_DATABASE_ERROR_NO_ROWS_SELECTED'));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Build the WHERE clause for the primary keys.
|
|
$where = $this->_db->quoteName($k) . ' IN (' . implode(',', $pks) . ')';
|
|
|
|
// Determine if there is checkin support for the table.
|
|
if (!property_exists($this, 'checked_out') || !property_exists($this, 'checked_out_time')) {
|
|
$checkin = '';
|
|
} else {
|
|
$checkin = ' AND (checked_out IS null OR checked_out = 0 OR checked_out = ' . (int) $userId . ')';
|
|
}
|
|
|
|
// Update the publishing state for rows with the given primary keys.
|
|
$query = $this->_db->getQuery(true);
|
|
$query->update($this->_db->quoteName($this->_tbl));
|
|
$query->set($this->_db->quoteName('published') . ' = ' . (int) $state);
|
|
$query->where($where);
|
|
|
|
|
|
// Check for a database error.
|
|
// TODO: use exception handling
|
|
// if ($this->_db->getErrorNum()) {
|
|
// $this->setError($this->_db->getErrorMsg());
|
|
// return false;
|
|
// }
|
|
try
|
|
{
|
|
$this->_db->setQuery($query . $checkin);
|
|
$this->_db->execute();
|
|
}
|
|
catch (RuntimeException $e)
|
|
{
|
|
Factory::getApplication()->enqueueMessage($e->getMessage(), 'notice');
|
|
}
|
|
|
|
// If checkin is supported and all rows were adjusted, check them in.
|
|
if ($checkin && (count($pks) == $this->_db->getAffectedRows())) {
|
|
// Checkin the rows.
|
|
foreach ($pks as $pk) {
|
|
$this->checkin($pk);
|
|
}
|
|
}
|
|
|
|
// If the Table instance value is in the list of primary keys that were set, set the instance.
|
|
if (in_array($this->$k, $pks)) {
|
|
$this->published = $state;
|
|
}
|
|
|
|
$this->setError('');
|
|
|
|
return true;
|
|
}
|
|
}
|
|
?>
|