class HTMLEditorElementRule (View source)

Rules used to define whether a given element or regex pattern of elements is allowed in the content of an HTMLEditorField.

Constants

GLOBAL_NAME

Name of the global rule for a given rule set

Methods

public static 
fromArray(string $name, array $ruleArray)

Returns a HTMLEditorAttributeRule based on an associative array defining the rule.

public
__construct(string $name, bool $nameIsPattern = false, bool $padEmpty = false, bool $removeIfEmpty = false, bool $removeIfNoAttributes = false)

No description

public
string
getName()

Get the name of the element(s) this rule applies to.

public
bool
getNameIsPattern()

Returns true if the value returned from getName() is a regex pattern.

public
array
getAttributeRules()

Get all attribute rules

public
bool
getPadEmpty()

Get whether empty elements will have a non-breaking space added inside them.

public
bool
getRemoveIfEmpty()

Get whether empty elements will be removed.

public
bool
getRemoveIfNoAttributes()

Get whether elements with no attributes will be removed.

public
addAttributeRule(HTMLEditorAttributeRule $rule)

Add an attribute rule which must apply to any elements covered by this element rule.

public
removeAttributeRule(string $ruleName)

Remove an attribute rule so it no longer applies to any elements covered by this element rule.

public
bool
isElementAllowed(DOMElement $element)

Check whether the given DOM element is allowed according to this rule.

public
bool
isAttributeAllowed(DOMAttr $attribute)

Check whether the give attribute is allowed for elements covered by this element rule.

Details

static HTMLEditorElementRule fromArray(string $name, array $ruleArray)

Returns a HTMLEditorAttributeRule based on an associative array defining the rule.

If the rule array is empty, the defaults apply. Excludes attributes - get those separately using HTMLEditorAttributeRule::fromArray().

Parameters

string $name
array $ruleArray

Return Value

HTMLEditorElementRule

__construct(string $name, bool $nameIsPattern = false, bool $padEmpty = false, bool $removeIfEmpty = false, bool $removeIfNoAttributes = false)

No description

Parameters

string $name
bool $nameIsPattern
bool $padEmpty
bool $removeIfEmpty
bool $removeIfNoAttributes

string getName()

Get the name of the element(s) this rule applies to.

This can also be a regex pattern - in which case getNameIsPattern() should return true.

Return Value

string

bool getNameIsPattern()

Returns true if the value returned from getName() is a regex pattern.

Return Value

bool

array getAttributeRules()

Get all attribute rules

Return Value

array

bool getPadEmpty()

Get whether empty elements will have a non-breaking space added inside them.

Return Value

bool

bool getRemoveIfEmpty()

Get whether empty elements will be removed.

Return Value

bool

bool getRemoveIfNoAttributes()

Get whether elements with no attributes will be removed.

Return Value

bool

HTMLEditorElementRule setGlobalRule(HTMLEditorElementRule $rule)

No description

Parameters

HTMLEditorElementRule $rule

Return Value

HTMLEditorElementRule

HTMLEditorElementRule addAttributeRule(HTMLEditorAttributeRule $rule)

Add an attribute rule which must apply to any elements covered by this element rule.

Parameters

HTMLEditorAttributeRule $rule

Return Value

HTMLEditorElementRule

HTMLEditorElementRule removeAttributeRule(string $ruleName)

Remove an attribute rule so it no longer applies to any elements covered by this element rule.

Parameters

string $ruleName

Return Value

HTMLEditorElementRule

bool isElementAllowed(DOMElement $element)

Check whether the given DOM element is allowed according to this rule.

Note that this method assumes this rule applies to the element - it does not check the tag name of the element as part of its conditional logic.

Parameters

DOMElement $element

Return Value

bool

bool isAttributeAllowed(DOMAttr $attribute)

Check whether the give attribute is allowed for elements covered by this element rule.

Parameters

DOMAttr $attribute

Return Value

bool