erste Lauffähige Fassung
This commit is contained in:
16
com_eis/src/View/Main/HtmlView.php
Normal file
16
com_eis/src/View/Main/HtmlView.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user