php-extended/php-html-transformer-script-filter

This package is abandoned and no longer maintained. The author suggests using the php-extended/php-html-transformer-object package instead.

A filter for html trees that removes script nodes and events

3.1.16 2021-06-25 17:28 UTC

README

A filter for html trees that removes script nodes and events.

coverage build status

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-html-transformer-script-filter": "^3",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

To filter a dom node, do the following :


use PhpExtended\HtmlTransformerScriptFilter;

/* @var $dom \PhpExtended\Html\HtmlAbstractNodeInterface */
$filter = new HtmlTransformerScriptFilter();
$filtered = $filter->transform($dom);
// $filtered instanceof \PhpExtended\Html\HtmlAbstractNodeInterface
// but without script nodes

License

MIT (See license file).