<?php
//use load_file to load libs and whatnot else
abstract class CONFIG{
const rooturl = "http://www.www.yoursite.com";
const image_url = "http://www.yoursite.com/images";
const abspath = ROOTDIR; //ROOTDIR = dirname(__FILE__) - defined in kvframework/config.php
const tempname = "default";
const DB_MODE = "development";
const RENDER_ENGINE = 'kvframework_renderengine';
const DEFAULT_SITE_CLASS = "application";
}
?>