PHP Classes

File: langPatch.php

Recommend this page to a friend!
  Classes of larry bird   Template Generation   langPatch.php   Download  
File: langPatch.php
Role: Configuration script
Content type: text/plain
Description: simple language pack file
Class: Template Generation
Template engine that replaces regular expression
Author: By
Last change:
Date: 18 years ago
Size: 1,369 bytes
 

Contents

Class file image Download
<? /*
+-------------------------------------------------------------------------------+
| name Simple Lang Patch |
| file: langPatch.php |
| vaersion 2006/feb/07 |
| Released under the terms and conditions of the GNU General Public License |
| For more details: http://gnu.org |
| |
| Test on these System Configuration: |
| Apache/2.0.55 (Win32) PHP/5.1.2 + MySQL/5.0.15 |
| Apache/2.0.52 (Unix) PHP/4.3.9 + MySQL/4.0.21 |
| Apache/2.0.52 (Unix) PHP/5.0.2 + MySQL/4.0.21 |
+-------------------------------------------------------------------------------+
        */
if (realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) { #disable direct view of this file
       
exit('This file can not be accessed directly...');
}else{
define("_TITLE", "Your template Page");

define("_TEST01", "Hey, i`m bold now.");
define("_TEST02", "Hey, i`m bold too.");

define("_ExTIME", "&nbsp;seconds");
}
?>