ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMailTemplateSelectInputGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Form/classes/class.ilSelectInputGUI.php';
5 require_once 'Services/JSON/classes/class.ilJsonUtil.php';
6 
11 {
15  protected $fields = array();
16 
20  protected $url;
21 
28  public function __construct($a_title = '', $a_postvar = '', $url = '', array $fields = array())
29  {
30  parent::__construct($a_title, $a_postvar);
31 
32  $this->url = $url;
33  $this->fields = $fields;
34  }
35 
39  public function render($a_mode = '')
40  {
41  $html = parent::render($a_mode);
42 
43  $tpl = new ilTemplate('tpl.prop_template_select_container.html', true, true, 'Services/Mail');
44  $tpl->setVariable('CONTENT', $html);
45  $tpl->setVariable('FIELDS', json_encode($this->fields));
46  $tpl->setVariable('URL', $this->url);
47  $tpl->setVariable('ID', $this->getFieldId());
48 
49  return $tpl->get();
50  }
51 }
__construct($a_title='', $a_postvar='', $url='', array $fields=array())
Class ilMailTemplateSelectInputGUI.
getFieldId()
Get Post Variable.
$errors fields
Definition: imgupload.php:51
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
Definition: latex.php:41