hipnaba / indigo-html
An HTML abstraction layer.
1.0.0
2018-02-04 11:58 UTC
Requires
- hipnaba/indigo-view: ^1.0
- zendframework/zend-escaper: ^2.5
- zendframework/zend-json: ^3.0
- zendframework/zend-stdlib: ^3.1
Requires (Dev)
- hipnaba/indigo-test: dev-master
- phpunit/phpunit: ^6.0
- phpunit/phpunit-dom-assertions: *
- zendframework/zend-modulemanager: ^2.7
- zendframework/zend-servicemanager: ^3.2
This package is auto-updated.
Last update: 2025-03-09 03:00:58 UTC
README
Indigo HTML tries to simplify HTML element manipulation. It does not work with DOMElement but provides an API of its own. It also provides integration with Zend View in the form of view helpers.
Installation
composer require hipnaba/indigo-html dev-master
Usage
<?php // Creating elements $link = new \Indigo\Html\Element\Element('a', [ 'class' => 'link', ]); // Settings attributes $link->setAttribute('href', '#'); // Working with css classes $link->addClass('link-default'); // Setting content $link->setContent('This is a link!'); // Nesting elements $item = new \Indigo\Html\Element\Element('li'); $item->append($link); $list = new \Indigo\Html\Element\Element('ul', [ 'id' => 'menu', ]); $list->append($item); // Rendering elements using the helper echo $this->htmlElement($list);
The above example would render something like this:
<ul id="menu"> <li> <a class="link link-default" href="#">This is a link!</a> </li> </ul>