Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/administrator/components/com_rsmembership/controllers/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package RSMembership!
* @copyright (c) 2009 - 2016 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
class RSMembershipControllerPayments extends JControllerAdmin
{
protected $text_prefix = 'COM_RSMEMBERSHIP';
public function __construct($config = array())
{
parent::__construct($config);
}
public function getModel($name = 'Payment', $prefix =
'RSMembershipModel', $config = array('ignore_request'
=> true))
{
$model = parent::getModel($name, $prefix, $config);
return $model;
}
public function saveOrderAjax()
{
$pks = $this->input->post->get('cid', array(),
'array');
$order = $this->input->post->get('order', array(),
'array');
// Sanitize the input
$pks = array_map('intval', $pks);
$order = array_map('intval', $order);
// Get the model
$model = $this->getModel();
// Save the ordering
$return = $model->saveorder($pks, $order);
if ($return)
echo "1";
// Close the application
JFactory::getApplication()->close();
}
/**
* Save the manual order inputs from the extras list page.
*
* @return void
* @since 1.6
*/
public function saveorder()
{
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
// Get the arrays from the Request
$order = JFactory::getApplication()->input->get('order',
array(), 'array');
$cids =
JFactory::getApplication()->input->get('cid', array(),
'array');
parent::saveorder();
}
}