HTMLparser_tags

Properties

overrideAttribs

overrideAttribs
Data type

string

If set, this string is preset as the attributes of the tag.

allowedAttribs

allowedAttribs
Data type

mixed

Defines the allowed attributes.

Possible values:

0

No attributes allowed.

(comma-separated list of attributes)

Only attributes in this list are allowed.

(blank/not set)

All attributes are allowed.

fixAttrib.[attribute].set

fixAttrib.[attribute].set
Data type

string

Force the attribute value to this value.

fixAttrib.[attribute].unset

fixAttrib.[attribute].unset
Data type

boolean

If set, the attribute is unset.

fixAttrib.[attribute].default

fixAttrib.[attribute].default
Data type

string

If no attribute exists by this name, this value is set as default value (if this value is not blank)

fixAttrib.[attribute].always

fixAttrib.[attribute].always
Data type

boolean

If set, the attribute is always processed. Normally an attribute is processed only if it exists

fixAttrib.[attribute].trim

fixAttrib.[attribute].trim
Data type

boolean

If true, the value is passed through the respective PHP-function.

fixAttrib.[attribute].intval

fixAttrib.[attribute].intval
Data type

boolean

If true, the value is passed through the respective PHP-function.

fixAttrib.[attribute].upper

fixAttrib.[attribute].upper
Data type

boolean

If true, the value is passed through the PHP function strtoupper().

fixAttrib.[attribute].lower

fixAttrib.[attribute].lower
Data type

boolean

If true, the value is passed through the PHP function strtolower().

fixAttrib.[attribute].range

fixAttrib.[attribute].range
Data type

[low],[high]

Setting integer range.

fixAttrib.[attribute].list

fixAttrib.[attribute].list
Data type

list of values, trimmed

Attribute value must be in this list. If not, the value is set to the first element.

fixAttrib.[attribute].removeIfFalse

fixAttrib.[attribute].removeIfFalse
Data type

boolean / blank string

If set, then the attribute is removed if it is false (= 0). If this value is set to blank then the value must be a blank string (that means a "zero" value will not be removed).

fixAttrib.[attribute].removeIfEquals

fixAttrib.[attribute].removeIfEquals
Data type

string

If the attribute value matches the value set here, then it is removed.

fixAttrib.[attribute].casesensitiveComp

fixAttrib.[attribute].casesensitiveComp
Data type

boolean

If set, the comparison in fixAttrib.[attribute].removeIfEquals and fixAttrib.[attribute].list will be case-sensitive. At this point, it's insensitive.

fixAttrib.[attribute].prefixRelPathWith

fixAttrib.[attribute].prefixRelPathWith
Data type

string

If the value of the attribute seems to be a relative URL (no scheme like "http" and no "/" as first char) then the value of this property will be prefixed the attribute.

Example:

EXT:site_package/Configuration/TypoScript/setup.typoscript
lib.parser.fixAttrib.src.prefixRelPathWith = https://example.org/typo3/32/dummy/

fixAttrib.[attribute].userFunc

fixAttrib.[attribute].userFunc
Data type

function name

User function for processing of the attribute. The return value of this function will be used as the new tag value.

Example:

EXT:site_package/Configuration/TypoScript/setup.typoscript
lib.parser.fixAttrib.href.userFunc = \Vendor\ExtName\ClassName->function

Two parameters are passed to the function:

  1. The tag value as a string or an array containing the tag value and additional configuration (see below).

  2. The reference the to HtmlParser instance that calls the method.

By default the first parameter is the value of the processed tag. This changes when you pass additional configuration options to the user function:

EXT:site_package/Configuration/TypoScript/setup.typoscript
lib.parser.fixAttrib.href.userFunc.myCustomParm = myCustomValue

In that case the first parameter passed to the user function will be an array containing these values:

protect

protect
Data type

boolean

If set, the tag <> is converted to &lt; and &gt;

remap

remap
Data type

string

If set, the tagname is remapped to this tagname

rmTagIfNoAttrib

rmTagIfNoAttrib
Data type

boolean

If set, then the tag is removed if no attributes happened to be there.

nesting

nesting
Data type

mixed

If set true, then this tag must have starting and ending tags in the correct order. Any tags not in this order will be discarded. Thus </B><B><I></B></I></B> will be converted to <B><I></B></I>.

Is the value "global" then true nesting in relation to other tags marked for "global" nesting control is preserved. This means that if <B> and <I> are set for global nesting then this string </B><B><I></B></I></B> is converted to <B></B>