All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- New documentation added.
- Additional Builders.
- Additional examples.
- Default values for functions using the
$child
parameter have been changed fromtrue
tofalse
. To open a div you must now call$h->div(true);
and to close a div you can call$h->div(false)
or$h->div()
. It was found that setting the default to false, eliminates a large number of keystrokes over the other way around since many times an opening tag will have additional parameters, forcing you to typetrue
anyway. - Readme documentation updated.
- Class function documentation updated.
- inputTextarea() renamed to textarea().
- Form elements (input, textarea, select, etc.) removed from Components class and placed into its own Builder class.
- Additional cleanup functions to Builder\Table.
- Several bugs.
- Added Builder\Stylesheet.
- Added Builder\Table.
- Added Builder\Bulletlist.
- Initial creation.