PHP Classes

File: inc_config.php

Recommend this page to a friend!
  Classes of Vibert Bruno   Process Wait Screen   inc_config.php   Download  
File: inc_config.php
Role: Configuration script
Content type: text/plain
Description: Configuration file
Class: Process Wait Screen
Display wait screens to show during long processes
Author: By
Last change:
Date: 19 years ago
Size: 361 bytes
 

Contents

Class file image Download
<?
//
define( "BASE_PATH", "" );

if( isset(
$ENABLE_DEBUG ) )
{
   
$SHOW_DEBUG = null;
   
session_register( 'SHOW_DEBUG' );
   
$SHOW_DEBUG = $HTTP_GET_VARS['ENABLE_DEBUG'];
}
if( !isset(
$SHOW_DEBUG ) )
{
   
$SHOW_DEBUG = 1;
}

session_register( 'SHOW_DEBUG' );


if( !isset(
$fuseAction ) || empty( $fuseAction ) )
   
$fuseAction = "default";
   
?>