<?php
// --------------------------------------------------------------------------
//
// Esvon Classifieds v.4.0
// Copyright(C), Esvon LTD, 2001-2010, All Rights Reserved.
// E-mail: hide@address.com
//
// All forms of reproduction, including, but not limited to, internet posting,
// printing, e-mailing, faxing and recording are strictly prohibited.
// One license required per site running Esvon Classifieds.
// To obtain a license for using Esvon Classifieds, please register at
// http://www.esvon.com/pg/products/p_classifieds/
//
// --------------------------------------------------------------------------
require './inc/application.php';
$title = 'Page Title';
/*
$META_K = 'Meta Keywords';
$META_D = 'Meta Description';
*/
function getPageData(){
?>
<!-- This is a sample page that shows an alternative to "Extra Pages" module
as a way to add a custom page that has a general header / footer -->
INSERT PAGE CONTENT HERE
<?
}
$o_pg = &Factory::create('esPage');
$o_pg->func_inner_page = 'getPageData';
echo $o_pg->getContents();
PrintParseTime();
?>