- <?
- /**
- * The Table Initialize resource file.
- * Initialize the system Table constants from the POST/GET request
- * or from the default values
- *
- * @package table
- * @filesource
- * @see HTML_TABLE_RESOURCE_PATH/Initialize.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
- */
-
- /**
- * Choose, which Skeleton components to show
- * or extract info from GET/POST
- * @global SKELETON_SHOW The Skeleton to Show
- */
- if (!defined('SKELETON_SHOW')) {
- if (empty($_GET[REQUEST_SKELETON_SHOW])) {
- if (empty($_POST[REQUEST_SKELETON_SHOW])) {
- // define it later
- } else {
- /**
- * @ignore
- */
- define('SKELETON_SHOW' ,$_POST[REQUEST_SKELETON_SHOW]);
- }
- } else {
- /**
- * @ignore
- */
- define('SKELETON_SHOW' ,$_GET[REQUEST_SKELETON_SHOW]);
- }
- }
-
- ?>