PluginProbe
Brizy – Page Builder / trunk
Brizy – Page Builder vtrunk
2.8.23 2.8.22 2.8.21 2.8.20 2.8.19 2.8.18 2.8.17 2.8.16 2.8.15 2.8.14 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.15 2.7.16 All 188 releases
brizy / parser / dom-interface.php

dom-interface.php in Brizy – Page Builder trunk, at parser/dom-interface.php

31 lines 549 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 interface Brizy_Parser_DomInterface
4 {
5
6 /**
7 * @param string $tag
8 * @param string $cssClass
9 *
10 * @return void
11 */
12 public function remove($tag, $cssClass);
13
14 /**
15 * @param string $tag
16 * @param string $cssClass
17 * @param string $text
18 *
19 * @return void
20 */
21 public function appendText($tag, $cssClass, $text);
22
23 public function appendHtml($targetTag, $cssClass, $html);/**
24 * Get modified HTML
25 *
26 * @return string
27 */
28 public function getHtml();
29
30 public function getBody();
31 }