Ubiquity  2.0.3
php rapid development framework
TemplateEngine.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Ubiquity\views\engine;
4 
5 abstract class TemplateEngine {
6 
7  abstract public function render($fileName, $pData, $asString);
8  abstract public function getBlockNames($templateName);
9  abstract public function getCode($templateName);
10 }
render($fileName, $pData, $asString)