Login   Register  
PHP Classes
elePHPant
Icontem

File: demo/templates/default/mySkinSet.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nick Tompson  >  Flexible Template Engine  >  demo/templates/default/mySkinSet.php  >  Download  
File: demo/templates/default/mySkinSet.php
Role: Example script
Content type: text/plain
Description: Demo skin set for templates.
Class: Flexible Template Engine
Template processing engine
Author: By
Last change:
Date: 2008-06-30 16:40
Size: 254 bytes
 

Contents

Class file image Download
<?php
// Make sure we are running safe!
if ( !defined"TEMPL_ENGINE_IN" ) )
{
    die();
}

class 
mySkinSet
{
    function 
testFunction$var )
    {
        return <<<EOF
THIS IS SOME TEST HTML. The value for the argument is <b>{$var}</b>
EOF;
    }
}
?>