Login   Register  
PHP Classes
elePHPant
Icontem

File: tags.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of S Lake  >  Hyena Template Engine  >  tags.php  >  Download  
File: tags.php
Role: Auxiliary data
Content type: text/plain
Description: Hyena Template Engine Tags File
Class: Hyena Template Engine
Engine that compiles templates into PHP scripts
Author: By
Last change:
Date: 2007-02-05 12:10
Size: 367 bytes
 

Contents

Class file image Download
<?php 
/* 
    This is the array of the template tags, note what order they are in 
	as the replacements in the template replacement array need to be
	in that order  
*/

$templatags = array("<--DATE-->","<--URL-->","<--IMAGES-->");

/*
	This is the replacement array
*/

$templareps = array(strftime("%B %d, %Y,<br> %H:%M:%S",time()),URL,"images/");
?>