17 lines
418 B
PHP
17 lines
418 B
PHP
<?php
|
|
namespace EIS\Component\EIS\Administrator\View\Main;
|
|
|
|
\defined('_JEXEC') or die;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\MVC\View\HtmlView as BaseHtmlView;
|
|
|
|
class HtmlView extends BaseHtmlView
|
|
{
|
|
public function display($tpl = null): void
|
|
{
|
|
echo "<h2>Willkommen bei EIS</h2>";
|
|
$this->data = Factory::getApplication()->getUserState('com_eis.pdfdata');
|
|
parent::display($tpl);
|
|
}
|
|
}
|