Nenhuma Descrição

DomNode.php 409B

12345678910111213141516171819
  1. <?php
  2. namespace MailPoet\Util\pQuery;
  3. if (!defined('ABSPATH')) exit;
  4. class DomNode extends \pQuery\DomNode {
  5. public $childClass = 'MailPoet\Util\pQuery\DomNode';
  6. public function getInnerText() {
  7. return html_entity_decode($this->toString(true, true, 1), ENT_NOQUOTES, 'UTF-8');
  8. }
  9. public function getOuterText() {
  10. return html_entity_decode($this->toString(), ENT_NOQUOTES, 'UTF-8');
  11. }
  12. }