- <?
- /**
- * The Table Define resource file.
- * Defines the Table system constants for the myPHP System
- * This file must be included before all other includes.
- *
- * @package table
- * @filesource
- * @see HTML_TABLE_RESOURCE_PATH/Define.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 REQUEST_SKELETON_SHOW The Skeleton Request Parameter
- */
- define('REQUEST_SKELETON_SHOW', 'tableSKELETON_SHOW');
-
- /**
- * @global SKELETON_XYZ The Skeleton Setup
- */
- define('SKELETON_TEXT' , '');
- define('SKELETON_WIDTH', '100%');
- define('SKELETON_CLASS', 'skeletonNONE');
- define('SKELETON_BORDER', '0');
- define('SKELETON_CELL_PADDING', '7');
- define('SKELETON_CELL_SPACING', '0');
-
- /**
- * Choose, which Skeleton components to show
- * i.e. $layout = SKELETON_SHOW_ALL
- * @global SKELETON_SHOW_XYZ The Skeleton to Show
- */
- define('SKELETON_SHOW_NONE' , 0x0001);
- define('SKELETON_SHOW_ALL' , 0xFFFF);
- define('SKELETON_SHOW_LEFT' , 0x0002);
- define('SKELETON_SHOW_CENTER', 0x0004);
- define('SKELETON_SHOW_RIGHT' , 0x0008);
- define('SKELETON_SHOW_TEASER_LEFT' , 0x0020);
- define('SKELETON_SHOW_TEASER_CENTER', 0x0040);
- define('SKELETON_SHOW_TEASER_RIGHT' , 0x0080);
-
- $DEFINE_SKELETON_SHOW =
- array(
- 'ARRAY_NAME'=>'$DEFINE_SKELETON_SHOW',
- 'SKELETON_SHOW_LEFT'=>SKELETON_SHOW_LEFT,
- 'SKELETON_SHOW_CENTER'=>SKELETON_SHOW_CENTER,
- 'SKELETON_SHOW_RIGHT'=>SKELETON_SHOW_RIGHT,
- 'SKELETON_SHOW_TEASER_LEFT'=>SKELETON_SHOW_TEASER_LEFT,
- 'SKELETON_SHOW_TEASER_CENTER'=>SKELETON_SHOW_TEASER_CENTER,
- 'SKELETON_SHOW_TEASER_RIGHT'=>SKELETON_SHOW_TEASER_RIGHT,
- );
- ?>