Login   Register  
PHP Classes
elePHPant
Icontem

File: layout.tpl

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mallory Dessaintes  >  PHP Simple View  >  layout.tpl  >  Download  
File: layout.tpl
Role: Auxiliary script
Content type: text/plain
Description: Layout template (used for inheritance)
Class: PHP Simple View
Template engine that supports template inheritance
Author: By
Last change:
Date: 2011-08-06 12:12
Size: 386 bytes
 

Contents

Class file image Download

<?php $this->startBlock('header'?>
    <?php $this->_header ?><br />
<?php $this->endBlock() ?>

<?php $this->startBlock('contents'?>
    <?php $this->_contents ?>
<?php $this
->endBlock() ?>

<?php $this->startBlock('footer'?>
    <?php $this->_footer ?><br />
    <?php $this->startBlock('footerCopyright'?>
        Copyright
    <?php $this->endBlock() ?>
<?php $this
->endBlock() ?>