- <?
- /**
- * The Define resource for the Tab package.
- * Defines the Tab system constants for the myPHP System
- * This file must be included before all other includes.
- *
- * @package tab
- * @filesource
- * @see HTML_TAB_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_TAB_SHOW The Request Tab Show Parameter
- */
- define('REQUEST_TAB_SHOW' , 'tabTAB_SHOW');
-
- /**
- * @global REQUEST_LAYOUT_MENU_TAB_WIDTH The Request Layout Menu Tab Width
- */
- define('REQUEST_LAYOUT_MENU_TAB_WIDTH', 'tabLAYOUT_TAB_WIDTH');
-
- /**
- * @global TABBODY_CELL_PADDING The Tab Body Cell Padding
- */
- define('TABBODY_CELL_PADDING','5');
-
- define('MENU_INDEX_TEXT' ,'Menu Index');
- define('MENU_INDEX_WIDTH','200px');
-
- /**
- * @global TAB_SHOW_MENU_TAB Choose, which layout TAB components to show . i.e. $layout = TAB_SHOW_MENU_TAB;
- */
- define('TAB_SHOW_ALL' ,0xFFFF); // Show All Tabs
- define('TAB_SHOW_NONE' ,0x0001); // Show No Tabs
- define('TAB_SHOW_MENU_TAB' ,0x0002); // Show the Tab Menu
- // : :
-
- define('TAB_SHOW_SPARE' ,0x8000); //
-
- $DEFINE_TAB_SHOW =
- array(
- 'ARRAY_NAME'=>'$DEFINE_TAB_SHOW',
- 'TAB_SHOW_MENU_TAB'=>TAB_SHOW_MENU_TAB,
- // : :
- //'TAB_SHOW_SPARE'=>TAB_SHOW_SPARE,
-
- );
-
- ?>