ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
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 $lng;
26 
27  require_once 'Services/Html/exceptions/class.ilHtmlPurifierNotFoundException.php';
28  throw new ilHtmlPurifierNotFoundException(sprintf($lng->txt('frm_purifier_not_implemented_for_type_x'), $a_type));
29  }
30 }
31 ?>