netzmacht / contao-dom-manipulator
This extension integrates the PHP dom manipulator into Contao.
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Type:contao-module
Requires
- php: >=5.3.2
- contao-community-alliance/composer-plugin: ~2.0
- contao-community-alliance/dependency-container: ~1.0
- contao-community-alliance/event-dispatcher: ~1.0
- contao/core: >=3.2.13,<3.5-dev
- netzmacht/php-dom-manipulator: ~1.0
- symfony/stopwatch: ~2.5
Requires (Dev)
- henrikbjorn/phpspec-code-coverage: ~0.2
- netzmacht/contao-build-tools: 1.0.x-dev
- phpspec/phpspec: 2.1.x-dev
This package is auto-updated.
Last update: 2020-04-06 10:41:34 UTC
README
This extension integrates the PHP dom document manipulator into Contao.
Install
This library can be installed using composer
$ php composer.phar require netzmacht/contao-dom-manipulator:~1.0
$ php composer.phar updatet
Usage
This extension hooks into the parseFrontendTemplate
and parseBackendTemplate
hook. It provides 4 events:
-
Netzmacht\Contao\DomManipulator\Events::CREATE_MANIPULATOR
It's the event which collects the rules and creates the manipulator. -
Netzmacht\Contao\DomManipulator\Events::START_MANIPULATE
It's just a state notification event. It's called before the manipulation starts. -
Netzmacht\Contao\DomManipulator\Events::STOP_MANIPULATE
It's just a state notification event. It's called before the manipulation stops. -
Netzmacht\Contao\DomManipulator\Events::LOAD_HTML
It's called right before the html is load into the manipulator. Use it to fix hml if something is going wrong when loading html into the dom.
To get more details how to create rules have a look at netzmacht/php-dom-manipulator.
Credits
This extension initially was extracted from the toflar/contao-css-class-replacer which is maintained by Yanick Witschi alias @Toflar.