Files
EIS/tmpl/default.php
2025-07-16 10:03:59 +02:00

22 lines
716 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
defined('_JEXEC') or die;
?>
<div id="pdfexplorer">
<h2>Hello World PDF-Explorer Dummy-Modul</h2>
<p>Modul-Parameter:</p>
<ul>
<li><strong>PDF-Pfad:</strong> <?php echo htmlspecialchars($params->get('pdf_path', '')); ?></li>
<li><strong>Erlaubte Gruppen:</strong>
<?php
$groups = $params->get('usergroups', []);
if (is_array($groups) && count($groups)) {
echo implode(', ', $groups);
} else {
echo 'Keine ausgewählt';
}
?>
</li>
<li><strong>Vorschau-Option:</strong> <?php echo htmlspecialchars($params->get('preview_option', '')); ?></li>
</ul>
</div>