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

Source for file Setup.php

Documentation is available at Setup.php

  1. <?
  2. /**
  3. * The Table Setup resource file.
  4. * Setup of the Table system constants
  5. * Use the default value if not defined
  6. *
  7. * @package table
  8. * @filesource
  9. * @see HTML_TABLE_RESOURCE_PATH/Setup.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. * @global TABLE_TEXT_NO_DATA The Text no data
  19. */
  20. if (!defined('TABLE_TEXT_NO_DATA')) {
  21. define('TABLE_TEXT_NO_DATA',DEFAULT_TABLE_TEXT_NO_DATA);
  22. }
  23.  
  24. /**
  25. * Choose, which layout skeleton to show when printing
  26. * @global SKELETON_SHOW_PRINTER The Skeleton to Show when Printing
  27. */
  28. if (!defined('SKELETON_SHOW_PRINTER')) {
  29. define('SKELETON_SHOW_PRINTER' ,
  30. SKELETON_SHOW_CENTER ); // Show Printer Skeleton
  31. }
  32.  
  33. /**
  34. * Choose, which Skeleton components to show
  35. * or extract info from GET/POST
  36. * @global SKELETON_SHOW The Skeleton to Show
  37. */
  38. if (!defined('SKELETON_SHOW')) {
  39. define('SKELETON_SHOW' ,
  40. //SKELETON_SHOW_ALL | // Use default
  41. SKELETON_SHOW_LEFT |
  42. SKELETON_SHOW_CENTER |
  43. SKELETON_SHOW_RIGHT |
  44. SKELETON_SHOW_TEASER_LEFT |
  45. SKELETON_SHOW_TEASER_CENTER |
  46. SKELETON_SHOW_TEASER_RIGHT |
  47. SKELETON_SHOW_NONE );
  48. }
  49.  
  50. ?>

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