19 declare(strict_types=1);
    26     public function __construct(
string $a_title, 
string $a_postvar, 
protected string $url, 
protected array $fields)
    31     public function render($a_mode = 
''): string
    33         $html = parent::render($a_mode);
    36             'tpl.prop_template_select_container.html',
    39             'components/ILIAS/Mail'    41         $tpl->setVariable(
'CONTENT', $html);
    42         $tpl->setVariable(
'FIELDS', json_encode($this->fields, JSON_THROW_ON_ERROR));
    43         $tpl->setVariable(
'URL', $this->url);
 
__construct(Container $dic, ilPlugin $plugin)