PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Nick Tompson   Flexible Template Engine   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Configuration file for the template engine.
Class: Flexible Template Engine
Template processing engine
Author: By
Last change:
Date: 16 years ago
Size: 554 bytes
 

Contents

Class file image Download
<?php
/**
* Template engine configuration.
* Make sure "templates" path points to the right location!
*/

$CONFIG = array();

//
// TEMPLATES PATH
// Make sure to add in the root path (i.e /home/something/public_html/ or /var/www/ etc).
//
$CONFIG['templ_path'] = "/var/www/templates/";

//
// DEFAULT TEMPLATE SET
// This will be a directory inside of the templ_path.
//
$CONFIG['default_set'] = "default";

//
// USE GZIP COMPRESSION
// Enable this if you want pages to be printed with GZIP
//
$CONFIG['use_gzip'] = "1";
?>