PHP Classes

File: classes/Parser/TagsConfig.php

Recommend this page to a friend!
  Classes of Bogdan   Simple Tags   classes/Parser/TagsConfig.php   Download  
File: classes/Parser/TagsConfig.php
Role: Configuration script
Content type: text/plain
Description: list of the tags (optional)
Class: Simple Tags
Template engine that replaces tags within brackets
Author: By
Last change:
Date: 14 years ago
Size: 256 bytes
 

Contents

Class file image Download
<?php
/**
 * Tags value
 *
 */
class TagsConfig {
   
    static public
$tagsValue = array(
       
'test1' => "<b>this is a first tag</b>",
       
'test2' => "<b>this is a second tag</b>",
       
'test3' => "<b>this is a third tag</b>",
       
'users' => '<b>usertag</b>',
    );
}
?>