MailPoet\EmailEditor\Integrations\Utils

Dom_Document_Helper::get_attribute_value()publicWC 1.0

Returns the value of the given attribute from the given element.

Method of the class: Dom_Document_Helper{}

No Hooks.

Return

null. Nothing (null).

Usage

$Dom_Document_Helper = new Dom_Document_Helper();
$Dom_Document_Helper->get_attribute_value( $element, $attribute ): string;
$element(\DOMElement) (required)
The element to get the attribute value from.
$attribute(string) (required)
The attribute to get the value from.

Dom_Document_Helper::get_attribute_value() code WC 9.8.1

public function get_attribute_value( \DOMElement $element, string $attribute ): string {
	return $element->hasAttribute( $attribute ) ? $element->getAttribute( $attribute ) : '';
}