Package Data | |
---|---|
Maintainer Username: | boyhagemann |
Package Create Date: | 2013-07-17 |
Package Last Update: | 2013-07-19 |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-22 03:17:17 |
Package Statistics | |
---|---|
Total Downloads: | 12 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package makes it easy to build up html elements in PHP in a Object Oriented way. It allowes you to manipulate the basic html structure as easy and managable as possible. After the html is setup, it can be rendered as a string.
The package is divided in three parts:
The easiest way to use this package is with Composer. Add the following line to your composer.json file:
"require": {
"boyhagemann/html": "dev-master"
}
This package comes is built on a simple Element class. It has attributes and can hold other elements nested as children.
Starting with a new element is simple
use Boyhagemann\Html\Table;
$table = new Table;
Change the attributes of an element
$table->attr('class', 'fancy-table');
You can insert a new element easy
$table->insert($tr = new Tr());
Insert an element with text
$tr->insert(new Td('This is a nice text');
You can edit each child element easily
$tr->eachChild(function($td, $i) {
$td->attr('class', 'my-class')
$td->setValue('My value ' . $i);
});
With the builder you can build the html and manipulate the structure of the elements.
You can insert new elements to a parent element
use Boyhagemann\Html\Builder;
$builder new Builder;
$builder->insert(new Table, 'tr');
Register a callback, so you get a fresh instance every time
$builder->register('myCustomElement', function() {
$element = new Element;
$element->setName('thead');
$element->attr('class', 'example-class');
return $element;
}
Or register an instance to use the same instance every time
$builder->register('myTable', new Table);
Or register a class
$builder->register('myTd', 'Your\Html\Td');
Now we can use this element throughout the whole project.
$builder->register('table', new Table);
$table = $builder->resolve('table');
$tr = $builder->resolve('tr');
$td = $builder->resolve('BoyHagemann\Html\Elements\Td');
We can use it to insert elements
$builder->insert('myTable', 'myCustomElement', function($thead) {
$thead->insert(new Td('Title');
$thead->insert(new Td('Description');
}
Or insert multiple elements and edit their properties
$builder->insertMultiple('myTable', 'tr', 5, function($tr) {
// You can edit each table row now
$tr->attr('class', 'my-row-class');
$tr->insert(new Td('First value');
$tr->insert(new Td('Second value');
});
Render your html table as... html
use Boyhagemann\Html\Renderer;
$renderer = new Renderer;
// The result is a string with valid html
$html = $renderer->render($table);