Súbor: [Platon] / Metafox / index.php (stiahnutie)
Revízia 1.2, Sat Aug 13 23:06:13 2005 UTC (18 years, 1 month ago) by nepto
Zmeny od 1.1: +3 -3
[lines]
Changed some string occurences of phpMyEzin to Metafox.
|
<?php
/*
* Metafox - enterprise content management system
*
* index.php - main script file
* ____________________________________________________________
*
* Developed by Ondrej Jombik <nepto@platon.sk>
* Copyright (c) 2001-2005 Platon SDG, http://platon.sk/
* All rights reserved.
*
* See README file for more information about this software.
* See COPYING file for license information.
*
* Download the latest version from
* http://platon.sk/projects/Metafox/
*/
/* $Platon: Metafox/index.php,v 1.1 2005/06/05 12:13:15 nepto Exp $ */
require_once 'subst.inc.php';
/*
* End of output buffering
*/
/*
* Write out HTML code
*/
if (1) {
eval($ezin_tmpl_main->getCode());
// Note, that this cannot be used!
// $ezin_tmpl_main->Output();
} else {
echo '<pre>';
echo htmlspecialchars($ezin_tmpl_main->getCode());
echo '</pre>';
}
/*
* Write access into web log
* phpWebLogAnalyzer -- http://platon.sk/projects/phpWebLogAnalyzer/
*/
if ($ezin_weblog != false) {
ezin_register_access();
}
/*
* Closing database connection
*/
ezin_close_db_connection();
?>
Platon Group <platon@platon.sk> http://platon.sk/
|