ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilHtmlPurifierFactory.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
12{
23 public static function _getInstanceByType($a_type)
24 {
25 global $DIC;
26
27 switch ($a_type) {
28 case 'frm_post':
29 require_once 'Services/Html/classes/class.ilHtmlForumPostPurifier.php';
30 return new ilHtmlForumPostPurifier();
31 break;
32
33 case 'qpl_usersolution':
34 require_once 'Modules/TestQuestionPool/classes/class.ilAssHtmlUserSolutionPurifier.php';
36 break;
37 }
38
39 require_once 'Services/Html/exceptions/class.ilHtmlPurifierNotFoundException.php';
40 throw new ilHtmlPurifierNotFoundException(sprintf($DIC->language()->txt('frm_purifier_not_implemented_for_type_x'), $a_type));
41 }
42}
sprintf('%.4f', $callTime)
An exception for terminatinating execution or to throw for unit testing.
Concrete class for sanitizing html of forum posts.
Factory for creating purifier instances.
static _getInstanceByType($a_type)
Factory method for creating purifier instances.
Class for html related exception handling in ILIAS.
global $DIC
Definition: saml.php:7
$a_type
Definition: workflow.php:92