. * * Version 0.1 * Author: Octavio Benedi Sanchez */ // Check for an authorized and logged user. // Check for server mode or display mode. If we get any post income we assume that // a server action is required. If there is no post info display mode is used as // default. include_once 'core/functions/check_login.php'; // Global version variable. $manager_system_version="2.0.1"; if(!empty($_POST)) { // Servidor mode include_once 'core/main_server.php'; } else { // Display mode include_once 'core/main_display.php'; } ?>