ILIAS
Release_4_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
Strict.php
Go to the documentation of this file.
1
<?php
2
3
class
HTMLPurifier_HTMLModule_Tidy_Strict
extends
HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4
4
{
5
public
$name
=
'Tidy_Strict'
;
6
public
$defaultLevel
=
'light'
;
7
8
public
function
makeFixes
() {
9
$r =
parent::makeFixes
();
10
$r[
'blockquote#content_model_type'
] =
'strictblockquote'
;
11
return
$r;
12
}
13
14
public
$defines_child_def
=
true
;
15
public
function
getChildDef
($def) {
16
if
($def->content_model_type !=
'strictblockquote'
)
return
parent::getChildDef
($def);
17
return
new
HTMLPurifier_ChildDef_StrictBlockquote
($def->content_model);
18
}
19
}
20
21
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
HTMLModule
Tidy
Strict.php
Generated on Wed Apr 27 2016 19:01:42 for ILIAS by
1.8.1.2 (using
Doxyfile
)