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
ImgRequired.php
Go to the documentation of this file.
1
<?php
2
3
// must be called POST validation
4
11
class
HTMLPurifier_AttrTransform_ImgRequired
extends
HTMLPurifier_AttrTransform
12
{
13
14
public
function
transform
($attr,
$config
, $context) {
15
16
$src =
true
;
17
if
(!isset($attr[
'src'
])) {
18
if
(
$config
->get(
'Core.RemoveInvalidImg'
))
return
$attr;
19
$attr[
'src'
] =
$config
->get(
'Attr.DefaultInvalidImage'
);
20
$src =
false
;
21
}
22
23
if
(!isset($attr[
'alt'
])) {
24
if
($src) {
25
$alt =
$config
->get(
'Attr.DefaultImageAlt'
);
26
if
($alt === null) {
27
$attr[
'alt'
] = basename($attr[
'src'
]);
28
}
else
{
29
$attr[
'alt'
] = $alt;
30
}
31
}
else
{
32
$attr[
'alt'
] =
$config
->get(
'Attr.DefaultInvalidImageAlt'
);
33
}
34
}
35
36
return
$attr;
37
38
}
39
40
}
41
42
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
AttrTransform
ImgRequired.php
Generated on Wed Apr 27 2016 19:01:41 for ILIAS by
1.8.1.2 (using
Doxyfile
)