phpDocumentor table
[ class tree: table ] [ index: table ] [ all elements ]

Source for file Initialize.php

Documentation is available at Initialize.php

  1. <?
  2. /**
  3. * The Table Initialize resource file.
  4. * Initialize the system Table constants from the POST/GET request
  5. * or from the default values
  6. *
  7. * @package table
  8. * @filesource
  9. * @see HTML_TABLE_RESOURCE_PATH/Initialize.php
  10. * @copyright (c) http://Finn-Rasmussen.com
  11. * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
  12. * @author http://Finn-Rasmussen.com
  13. * @version 1.9
  14. * @since 21-oct-2005
  15. */
  16.  
  17. /**
  18. * Choose, which Skeleton components to show
  19. * or extract info from GET/POST
  20. * @global SKELETON_SHOW The Skeleton to Show
  21. */
  22. if (!defined('SKELETON_SHOW')) {
  23. if (empty($_GET[REQUEST_SKELETON_SHOW])) {
  24. if (empty($_POST[REQUEST_SKELETON_SHOW])) {
  25. // define it later
  26. } else {
  27. /**
  28. * @ignore
  29. */
  30. define('SKELETON_SHOW' ,$_POST[REQUEST_SKELETON_SHOW]);
  31. }
  32. } else {
  33. /**
  34. * @ignore
  35. */
  36. define('SKELETON_SHOW' ,$_GET[REQUEST_SKELETON_SHOW]);
  37. }
  38. }
  39.  
  40. ?>

Documentation generated on Thu, 22 Dec 2005 17:12:13 +0100 by phpDocumentor 1.3.0RC3