- <?
- /**
- * The Default resource file.
- * Setup of the Default Show Source system constants
- * This file must be included after the Define.php
- *
- * @package showsource
- * @filesource
- * @see HTML_SHOW_SOURCE_RESOURCE_PATH/Default.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * @global DEFAULT_SHOW_SOURCE_CODE Default Show Source Code to use, false, or Show the php source code
- */
- define('DEFAULT_SHOW_SOURCE_CODE' , false);
-
- /**
- * @global DEFAULT_SOURCE_CODE_MESSAGE Default Show Source Code Message to use
- */
- define('DEFAULT_SOURCE_CODE_MESSAGE','TODO Language tranlation ... Global SourceCode Object');
- define('DEFAULT_SOURCE_CODE_INFO','TODO Language tranlation ... This is the Source Code for: ');
-
- /**
- * @global DEFAULT_SOURCE_CODE_DISPLAY Default Show Source Code Display to use, true, Display the html source code
- */
- define('DEFAULT_SOURCE_CODE_DISPLAY',true);
-
- /**
- * @global DEFAULT_SOURCE_CODE_SHOW Default Show Source Code Show to use, true, Show the php source code
- */
- define('DEFAULT_SOURCE_CODE_SHOW',true);
-
- define('DEFAULT_SOURCE_CODE_CACHE' ,true); // true, Cache the html as SOURCE_CODE_FILE
- define('DEFAULT_SOURCE_CODE_UPDATE' ,true); // true, Update local SOURCE_CODE_FILE file
- define('DEFAULT_SOURCE_CODE_OVERWRITE',true); // true, Overwrite local SOURCE_CODE_FILE file
- ?>