File: /home/mckernan/public_html/index-CLOSED.php
<?php
// <!-- phpDesigner :: Timestamp [12/28/2009 11:40:40 PM] -->
// ********************************************************
//
// App: McKernan-Corp.com
// Copyright: John McKernan
//
// ********************************************************
//
// File: /index.php
//
// ********************************************************
//
// page file: index page
//
// ********************************************************
// app init
$app_option = 'index';
require_once 'app.ini.php';
require_once 'wp_sitenews.php';
// user authentication
if (sess_isset('sid'))
{
Sessions::refresh($_SESSION['sid']);
}
else
{
Sessions::start(USR_GUEST, 0);
}
// page init
$main = new Main;
// prepare output
$tpl_used = 'index_body.tpl';
$output_page = array(
'_page' => PageVars::get_page($app_option),
'_menubar' => PageVars::get_menubar($app_option),
'_whatsnew' => $whatsnew,
'_quote' => $main->get_quote(),
'_quote_caption' => $main->get_quote_caption(),
'_cd' => $main->get_countdown(),
'_u_individual' => URI::make_querystring('individuals.php'),
'_u_rental' => URI::make_querystring('rentals.php'),
'_u_business' => URI::make_querystring('business.php'),
'_u_other' => URI::make_querystring('othertaxpayers.php'),
'_footbar' => PageVars::get_footbar()
);
// output
require_once SV_LIB_ROOT . 'pageproc/pageoutput.php';
// eof
?>