Download the PHP package racztiborzoltan/phalcon-xslt-view-engine without Composer
On this page you can find all versions of the php package racztiborzoltan/phalcon-xslt-view-engine. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download racztiborzoltan/phalcon-xslt-view-engine
More information about racztiborzoltan/phalcon-xslt-view-engine
Files in racztiborzoltan/phalcon-xslt-view-engine
Download racztiborzoltan/phalcon-xslt-view-engine
More information about racztiborzoltan/phalcon-xslt-view-engine
Files in racztiborzoltan/phalcon-xslt-view-engine
Vendor racztiborzoltan
Package phalcon-xslt-view-engine
Short Description Adapter to use XSLT as templating engine for Phalcon PHP framework
License BSD-3-Clause
Package phalcon-xslt-view-engine
Short Description Adapter to use XSLT as templating engine for Phalcon PHP framework
License BSD-3-Clause
Please rate this library. Is it a good library?
Informations about the package phalcon-xslt-view-engine
phalcon-xslt-view-engine
Adapter to use XSLT as templating engine for Phalcon PHP framework
Usages in directory.
Example
$di->set('view', function () {
// ...
$view->registerEngines(array(
'.xsl' => '\Z\Phalcon\Mvc\View\Engine\XSLT',
//
// OR:
//
'.xsl' => function ($view, $di) {
$engine = new XSLT($view, $di);
$engine->setOptions(array(
'phpFunctions' => array(
'ucfirst'
),
));
return $engine;
}
));
// ...
return $view;
}, true);
License
Released under MIT license.
CHANGELOG
v1.x
- The past ...
v2.0.0
- code cleaning, easing
- remove Phalcon 1.x compatibility
- remove events from XSLT View Engine
- remove 'defaultParameters' option
- removed methods:
- ...\XSLT->mergeParameters()
- ...\XSLT->getMustClean()
- ...\XSLT->setMustClean()
- ...\XSLT->getClean()
- ...\XSLT->setClean()
- ...\XSLT->getPath()
- ...\XSLT->setPath()
- ...\XSLT->getParameters()
- ...\XSLT->setParameters()
- ...\XSLT->removeParameters()
- ...\XSLT->getXMLPath()
- ...\XSLT->setXMLPath()
- ...\XSLT->setXMLDom()
- ...\XSLT->getInstanceId()
- ...\XSLT->getInstance()
- removed properties
- ...\XSLT->_mustclean
- ...\XSLT->_eventsManager
- ...\XSLT->_path
- ...\XSLT->_parameters
- ...\XSLT->_content
- ...\XSLT->_xml_path
- ...\XSLT::$_instances
- ...\XSLT->_instanceId
- ...\XSLT->_xmldoc
- simpler rendering
- simple xml debug option
- new methods:
- ...\XSLT::createXmlFromArray()
All versions of phalcon-xslt-view-engine with dependencies
PHP Build Version
Package Version
Requires
openlss/lib-array2xml Version
0.0.x
The package racztiborzoltan/phalcon-xslt-view-engine contains the following files
Loading the files please wait ....