PHP Classes

File: util/templatereflection/app_run_template.php

Recommend this page to a friend!
  Classes of Saro Carvello   PHP Web MVC Framework   util/templatereflection/app_run_template.php   Download  
File: util/templatereflection/app_run_template.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Web MVC Framework
MVC framework providing autogenerated MySQL models
Author: By
Last change: Update of util/templatereflection/app_run_template.php
Date: 1 year ago
Size: 296 bytes
 

Contents

Class file image Download
<?php
include_once("TemplateReflection.php");
$templateReflection = new TemplateReflection("standard_bootstrap_template.html");
$blocks = $templateReflection->getBlocks();
echo
"<pre>";
 
print_r($templateReflection->getComponents());
echo
"</pre>";
echo
"<pre>";
print_r($blocks);
echo
"</pre>";