- <?
- /**
- * Defines the Tree Node system constants.
- * The system constants for the myPHP System
- * This file must be included before all other includes.
- *
- * @package tree-node
- * @filesource
- * @see HTML_TREE_NODE_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
- */
-
- /**
- * The Request Tree Node Show Parameter
- * @global REQUEST_TREE_NODE_SHOW The Request Tree Node Show
- */
- define('REQUEST_TREE_NODE_SHOW', 'showTreeNode');
-
- /**
- * @global TREE_NODE_TEXT The Tree Node Text
- */
- define('TREE_NODE_TEXT','Tree Node View');
-
- /**
- * @global TREE_NODE_WIDTH The Tree Node width
- */
- define('TREE_NODE_WIDTH','200px');
-
- /**
- * @global TREE_NODE_CSS The Tree Node CSS
- */
- define('TREE_NODE_CSS','theTreeNode');
-
- /**
- * @global TREE_NODE_ALL The Tree Node is in the left side
- */
- define('TREE_NODE_SHOW_ALL' ,0xFFFF); // Show All Tree Nodes
- define('TREE_NODE_SHOW_NONE' ,0x0001); // Show No Tree Nodes
- define('TREE_NODE_SHOW_LEFT' ,0x0002);
- define('TREE_NODE_SHOW_CENTER' ,0x0004);
- define('TREE_NODE_SHOW_RIGHT' ,0x0008);
- $DEFINE_TREE_NODE_SHOW =
- array(
- 'ARRAY_NAME'=>'$DEFINE_TREE_NODE_SHOW',
- 'TREE_NODE_SHOW_LEFT'=>TREE_NODE_SHOW_LEFT,
- 'TREE_NODE_SHOW_CENTER'=>TREE_NODE_SHOW_CENTER,
- 'TREE_NODE_SHOW_RIGHT'=>TREE_NODE_SHOW_RIGHT,
- );
- ?>