31 lines
692 B
PHP
31 lines
692 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_leaflet
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
/**
|
|
* leaflet Component Controller
|
|
*
|
|
* @since 0.0.1
|
|
*/
|
|
class leafletController extends JControllerLegacy
|
|
{
|
|
public function initData()
|
|
{
|
|
if (!JSession::checkToken('get'))
|
|
{
|
|
echo new JResponseJson(null, JText::_('JINVALID_TOKEN'), true);
|
|
}
|
|
else
|
|
{
|
|
parent::display();
|
|
}
|
|
}
|
|
|
|
}
|