library domtemplate
DomTemplate engine forked from Kroc/DOMTemplate
gyuco/domtemplate
DomTemplate engine forked from Kroc/DOMTemplate
- Friday, October 9, 2015
- by giuseppe.concas
- Repository
- 2 Watchers
- 0 Stars
- 543 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 11 Forks
- 1 Open issues
- 2 Versions
- 0 % Grown
DOMTemplate
A templating engine that manipulates static HTML using DOM & XPath so as to separate template and logic, (*1)
Basic API:, (*2)
new DOMTemplate (source, [namespaces])
(string) to output the HTML / XML, cast the DOMTemplate object to a string,
i.e. `echo $template;`
query (query) make an XPath query
set (queries, [asHTML]) change HTML by specifying an array of ('XPath' => 'value')
setValue (query, value, [asHTML]) change a single HTML value with an XPath query
addClass (query, new_class) add a class to an HTML element
remove (query) remove one or more HTML elements, attributes or classes
repeat (query) return one (or more) elements as sub-templates
next () append the sub-template to the list and reset its content