public function __construct()
 {
     parent::__construct();
     $this->setId(self::TEMPLATE_TYPE_JASPER);
     $this->setTitle('Jasper Report');
     $this->setDescription('Templates with Jasper Reports, requires the Jasper Reports Library');
     $this->setTemplateFilename('template.jrxml');
     $this->setValidSuffixes(array('jrxml'));
 }
 public function __construct()
 {
     parent::__construct();
     $this->setId(self::TEMPLATE_TYPE_HTML);
     $this->setTitle('HTML');
     $this->setDescription('Templates with basic HTML, rendered with the ILIAS PDF engine (TCPDF)');
     $this->setTemplateFilename('template.html');
     $this->setValidSuffixes(array('html'));
 }