123456789101112131415161718192021222324252627282930313233 |
- <?php
- abstract class ViewsPluginStyleTestBase extends ViewsSqlTest {
-
- protected $elements;
-
- function storeViewPreview($output) {
- $htmlDom = new DOMDocument();
- @$htmlDom->loadHTML($output);
- if ($htmlDom) {
-
-
- $this->elements = simplexml_import_dom($htmlDom);
- }
- }
- }
|