Your IP : 216.73.216.240
<?php
/**
*----------------------------------------------------------------------------
* iCagenda Events Management Extension for Joomla!
*----------------------------------------------------------------------------
* @version 3.8.0 2021-09-22
*
* @package iCagenda.Admin
* @subpackage src.Model
* @link https://www.joomlic.com
*
* @author Cyril Reze
* @copyright (c) 2012-2026 Cyril Reze / JoomliC. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
*
* @since 3.5.0
*----------------------------------------------------------------------------
*/
namespace WebiC\Component\iCagenda\Administrator\Model;
\defined('_JEXEC') or die;
use Joomla\CMS\Application\ApplicationHelper;
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Model\AdminModel;
/**
* iCagenda Component Download Model.
*/
class DownloadModel extends AdminModel
{
protected $_context = 'com_icagenda.registrations';
/**
* Auto-populate the model state.
*
* Note. Calling getState in this method will result in recursion.
*
* @return void
*/
protected function populateState()
{
$input = Factory::getApplication()->input;
$basename = $input->cookie->getString(ApplicationHelper::getHash($this->_context . '.basename'), '__SITE__');
$this->setState('basename', $basename);
$compressed = $input->cookie->getInt(ApplicationHelper::getHash($this->_context . '.compressed'), 1);
$this->setState('compressed', $compressed);
}
/**
* Method to get the record form.
*
* @param array $data Data for the form.
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
*
* @return mixed A JForm object on success, false on failure
*/
public function getForm($data = array(), $loadData = true)
{
// Get the form.
$form = $this->loadForm('com_icagenda.download', 'download',
array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
{
return false;
}
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @return mixed The data for the form.
*/
protected function loadFormData()
{
$data = array(
'basename' => $this->getState('basename'),
'compressed' => $this->getState('compressed')
);
$this->preprocessData('com_icagenda.download', $data);
return $data;
}
}