| Current Path : /home/j/u/v/juvelize/www/administrator/components/com_icagenda/views/download/ |
| Current File : /home/j/u/v/juvelize/www/administrator/components/com_icagenda/views/download/view.html.php |
<?php
/**
*----------------------------------------------------------------------------
* iCagenda Events Management Extension for Joomla!
*----------------------------------------------------------------------------
* @version 3.6.14 2018-04-30
*
* @package iCagenda.Admin
* @link https://www.icagenda.com
*
* @author Cyril Rezé
* @copyright (c) 2012-2024 Cyril Rezé / iCagenda. All rights reserved.
* @license GNU General Public License version 3 or later; see LICENSE.txt
*
* @since 3.5.0
*----------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
/**
* View class for download a list of registered users.
*/
class icagendaViewdownload extends JViewLegacy
{
protected $form;
/**
* Display the view
*
* @param string $tpl The name of the template file to parse; automatically searches through the template paths.
*
* @return void
*/
public function display($tpl = null)
{
$this->form = $this->get('Form');
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new Exception(implode("\n", $errors), 500);
return false;
}
parent::display($tpl);
}
}