| 12345678910111213141516171819 |
- <?php
- namespace MailPoet\Util\pQuery;
- if (!defined('ABSPATH')) exit;
- class DomNode extends \pQuery\DomNode {
- public $childClass = 'MailPoet\Util\pQuery\DomNode';
- public function getInnerText() {
- return html_entity_decode($this->toString(true, true, 1), ENT_NOQUOTES, 'UTF-8');
- }
- public function getOuterText() {
- return html_entity_decode($this->toString(), ENT_NOQUOTES, 'UTF-8');
- }
- }
|