- <?
- /**
- * The Table Setup resource file.
- * Setup of the Table system constants
- * Use the default value if not defined
- *
- * @package table
- * @filesource
- * @see HTML_TABLE_RESOURCE_PATH/Setup.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 TABLE_TEXT_NO_DATA The Text no data
- */
- if (!defined('TABLE_TEXT_NO_DATA')) {
- define('TABLE_TEXT_NO_DATA',DEFAULT_TABLE_TEXT_NO_DATA);
- }
-
- /**
- * Choose, which layout skeleton to show when printing
- * @global SKELETON_SHOW_PRINTER The Skeleton to Show when Printing
- */
- if (!defined('SKELETON_SHOW_PRINTER')) {
- define('SKELETON_SHOW_PRINTER' ,
- SKELETON_SHOW_CENTER ); // Show Printer Skeleton
- }
-
- /**
- * Choose, which Skeleton components to show
- * or extract info from GET/POST
- * @global SKELETON_SHOW The Skeleton to Show
- */
- if (!defined('SKELETON_SHOW')) {
- define('SKELETON_SHOW' ,
- //SKELETON_SHOW_ALL | // Use default
-
- SKELETON_SHOW_LEFT |
- SKELETON_SHOW_CENTER |
- SKELETON_SHOW_RIGHT |
- SKELETON_SHOW_TEASER_LEFT |
- SKELETON_SHOW_TEASER_CENTER |
- SKELETON_SHOW_TEASER_RIGHT |
- SKELETON_SHOW_NONE );
- }
-
- ?>