2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2018-08-07 13:27:08 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
?>
|
|
|
|
###BOM###
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ###Component### Ajax Controller
|
|
|
|
*/
|
|
|
|
class ###Component###ControllerAjax extends JControllerLegacy
|
|
|
|
{
|
|
|
|
public function __construct($config)
|
|
|
|
{
|
|
|
|
parent::__construct($config);
|
|
|
|
// make sure all json stuff are set
|
|
|
|
JFactory::getDocument()->setMimeEncoding( 'application/json' );
|
|
|
|
JResponse::setHeader('Content-Disposition','attachment;filename="getajax.json"');
|
|
|
|
JResponse::setHeader("Access-Control-Allow-Origin", "*");
|
|
|
|
// load the tasks ###REGISTER_AJAX_TASK###
|
|
|
|
}
|
|
|
|
|
|
|
|
public function ajax()
|
|
|
|
{
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
$jinput = JFactory::getApplication()->input;
|
|
|
|
// Check Token!
|
|
|
|
$token = JSession::getFormToken();
|
|
|
|
$call_token = $jinput->get('token', 0, 'ALNUM');
|
|
|
|
if($token == $call_token)
|
2017-12-14 23:10:47 +00:00
|
|
|
{
|
2016-01-30 20:28:43 +00:00
|
|
|
$task = $this->getTask();
|
|
|
|
switch($task)
|
2017-12-14 23:10:47 +00:00
|
|
|
{###AJAX_INPUT_RETURN###
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-14 23:10:47 +00:00
|
|
|
else
|
|
|
|
{
|
2016-06-24 14:23:01 +00:00
|
|
|
if($callback = $jinput->get('callback', null, 'CMD'))
|
2017-12-14 23:10:47 +00:00
|
|
|
{
|
2016-06-24 14:23:01 +00:00
|
|
|
echo $callback."(".json_encode(false).");";
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2017-12-14 23:10:47 +00:00
|
|
|
else
|
|
|
|
{
|
2016-01-30 20:28:43 +00:00
|
|
|
echo "(".json_encode(false).");";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|