anis2505 / darwintpl
DarwinTpl template engine
dev-master
2015-08-22 11:16 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-04-29 18:07:55 UTC
README
#DarwinTpl Template Engine V1.0.0 ##Distribution repository
Php Template engine using native Php markup. No complicated or new syntax to learn.
to get started. download the DarwinTpl package.
include the DarwinTpl class file.
include(PATH_TO_DARWINTPL.'DarwinTpl.php')
Or simply using composer
"require": {
"anis2505/darwintpl":"dev-master"
}
in your composer.json file.
in you script create an instance of the class
$darwinTpl = new Darwin\DarwinTpl( TEMPLATES_ROOT_PATH );
Now you are ready to use DarwinTpl.
$darwinTpl->render("templatefile");
