<?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/
//
// --------------------------------------------------------------------------
if(!defined('SITE_PATH') || !IsAdmin()) die('Access denied');
if(!function_exists('hwModVer') || !hwModVer(12)) die('This module is incompatible with '.EC_TITLE.' '.EC_VERSION);
function Reviews_SetupPrepare(&$a_v){
$a_v['GD_VER'] = GD_VER;
}
function Reviews_main(){
$f = (string)$_GET['f'];
$A_OK = array('setup','reviews');
include HW_MOD_TPL.'top_nav.htm';
if(!$f || !in_array($f,$A_OK)) $f = 'reviews';
if($f == 'setup'){
// $pg = 'setup';
echo ShowModSetupPage();
}
else{
include HW_MOD_DIR.'admin/'.$f.'.php';
}
}
?>