function FieldWebTest::parseContent
Same name in other branches
- 9 core/modules/views/tests/src/Functional/Handler/FieldWebTest.php \Drupal\Tests\views\Functional\Handler\FieldWebTest::parseContent()
- 8.9.x core/modules/views/tests/src/Functional/Handler/FieldWebTest.php \Drupal\Tests\views\Functional\Handler\FieldWebTest::parseContent()
- 11.x core/modules/views/tests/src/Functional/Handler/FieldWebTest.php \Drupal\Tests\views\Functional\Handler\FieldWebTest::parseContent()
Parse a content and return the html element.
Parameters
string $content: The html to parse.
Return value
array An array containing simplexml objects.
1 call to FieldWebTest::parseContent()
- FieldWebTest::xpathContent in core/
modules/ views/ tests/ src/ Functional/ Handler/ FieldWebTest.php - Performs an xpath search on a certain content.
File
-
core/
modules/ views/ tests/ src/ Functional/ Handler/ FieldWebTest.php, line 180
Class
- FieldWebTest
- Tests fields from within a UI.
Namespace
Drupal\Tests\views\Functional\HandlerCode
protected function parseContent($content) {
$htmlDom = Html::load($content);
$elements = simplexml_import_dom($htmlDom);
return $elements;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.