url = $url; $this->fields = $fields; } /** * @param string $a_mode * @return string */ public function render($a_mode = '') { $html = parent::render($a_mode); $tpl = new ilTemplate('tpl.prop_template_select_container.html', true, true, 'Services/Mail'); $tpl->setVariable('CONTENT', $html); $tpl->setVariable('FIELDS', ilJsonUtil::encode($this->fields)); $tpl->setVariable('URL', $this->url); $tpl->setVariable('ID', $this->getFieldId()); return $tpl->get(); } }