| Current Path : /var/www/administrator/components/com_jcomments/controllers/ |
| Current File : /var/www/administrator/components/com_jcomments/controllers/custombbcodes.php |
<?php
/**
* JComments - Joomla Comment System
*
* @version 3.0
* @package JComments
* @author Sergey M. Litvinov (smart@joomlatune.ru)
* @copyright (C) 2006-2013 by Sergey M. Litvinov (http://www.joomlatune.ru)
* @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
class JCommentsControllerCustombbcodes extends JCommentsControllerList
{
public function __construct($config = array())
{
parent::__construct($config);
$this->registerTask('unpublish', 'publish');
$this->registerTask('button_enable', 'changeButtonState');
$this->registerTask('button_disable', 'changeButtonState');
}
function display($cachable = false, $urlparams = array())
{
$this->input->set('view', 'custombbcodes');
parent::display($cachable, $urlparams);
}
public function getModel($name = 'CustomBBCodes', $prefix = 'JCommentsModel', $config = array('ignore_request' => true))
{
$model = parent::getModel($name, $prefix, $config);
return $model;
}
public function duplicate()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$pks = $this->input->post->get('cid', array(), 'array');
JArrayHelper::toInteger($pks);
if (!empty($pks)) {
$model = $this->getModel();
$model->duplicate($pks);
}
$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
}
public function publish()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$pks = $this->input->get('cid', array(), 'array');
$data = array('publish' => 1, 'unpublish' => 0);
$task = $this->getTask();
$value = JArrayHelper::getValue($data, $task, 0, 'int');
if (!empty($pks)) {
$model = $this->getModel();
$model->publish($pks, $value);
}
$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
}
public function changeButtonState()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$pks = $this->input->get('cid', array(), 'array');
$data = array('button_enable' => 1, 'button_disable' => 0);
$task = $this->getTask();
$value = JArrayHelper::getValue($data, $task, 0, 'int');
if (!empty($pks)) {
$model = $this->getModel();
$model->changeButtonState($pks, $value);
}
$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
}
public function reorder()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$pks = $this->input->post->get('cid', array(), 'array');
$inc = ($this->getTask() == 'orderup') ? -1 : +1;
JArrayHelper::toInteger($pks);
$model = $this->getModel();
$return = $model->reorder($pks, $inc);
if ($return === false) {
$message = JText::sprintf('JLIB_APPLICATION_ERROR_REORDER_FAILED', $model->getError());
$this->setRedirect(
JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false),
$message, 'error'
);
return false;
} else {
$this->setMessage(JText::_('JLIB_APPLICATION_SUCCESS_ITEM_REORDERED'));
$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
return true;
}
}
public function saveorder()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$pks = $this->input->post->get('cid', array(), 'array');
$order = $this->input->post->get('order', array(), 'array');
JArrayHelper::toInteger($pks);
JArrayHelper::toInteger($order);
$model = $this->getModel();
$return = $model->saveorder($pks, $order);
if ($return === false) {
$message = JText::sprintf('JLIB_APPLICATION_ERROR_REORDER_FAILED', $model->getError());
$this->setRedirect(
JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false),
$message, 'error'
);
return false;
} else {
$this->setMessage(JText::_('JLIB_APPLICATION_SUCCESS_ORDERING_SAVED'));
$this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
return true;
}
}
public function saveOrderAjax()
{
$pks = $this->input->post->get('cid', array(), 'array');
$order = $this->input->post->get('order', array(), 'array');
JArrayHelper::toInteger($pks);
JArrayHelper::toInteger($order);
$model = $this->getModel();
$return = $model->saveorder($pks, $order);
if ($return) {
echo "1";
}
JFactory::getApplication()->close();
}
}