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
NameSync.php
Go to the documentation of this file.
1
<?php
2
8
class
HTMLPurifier_AttrTransform_NameSync
extends
HTMLPurifier_AttrTransform
9
{
10
11
public
function
__construct
() {
12
$this->idDef =
new
HTMLPurifier_AttrDef_HTML_ID
();
13
}
14
15
public
function
transform
($attr,
$config
, $context) {
16
if
(!isset($attr[
'name'
]))
return
$attr;
17
$name
= $attr[
'name'
];
18
if
(isset($attr[
'id'
]) && $attr[
'id'
] ===
$name
)
return
$attr;
19
$result
= $this->idDef->validate(
$name
,
$config
, $context);
20
if
(
$result
===
false
) unset($attr[
'name'
]);
21
else
$attr[
'name'
] =
$result
;
22
return
$attr;
23
}
24
25
}
26
27
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
AttrTransform
NameSync.php
Generated on Wed Apr 27 2016 19:01:41 for ILIAS by
1.8.1.2 (using
Doxyfile
)