eZ\Publish\Core\FieldType\RichText\Converter\Render::extractConfiguration PHP Метод

extractConfiguration() защищенный Метод

Extracts configuration hash from embed element.
protected extractConfiguration ( DOMElement $embed ) : array
$embed DOMElement
Результат array
    protected function extractConfiguration(DOMElement $embed)
    {
        $hash = array();
        $configElements = $embed->getElementsByTagName('ezconfig');
        if ($configElements->length) {
            $hash = $this->extractHash($configElements->item(0));
        }
        return $hash;
    }