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

Source for file Setup.php

Documentation is available at Setup.php

  1. <?
  2. /**
  3. * The Setup resource file for the the Tab package
  4. * Setup of the Component system constants
  5. * Use the default value if not defined
  6. *
  7. * @package tab
  8. * @filesource
  9. * @see HTML_TAB_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. * Choose, which layout Tab components to show when printing
  19. * @global TAB_SHOW_PRINTER The Tab to Show when Printing
  20. */
  21. if (!defined('TAB_SHOW_PRINTER')) {
  22. define('TAB_SHOW_PRINTER' ,
  23. TAB_SHOW_NONE ); // Show Printer Components
  24. }
  25.  
  26. /**
  27. * Choose, which layout Tab components to show
  28. * or extract info from GET/POST
  29. * @global TAB_SHOW The Tab to Show
  30. */
  31. if (!defined('TAB_SHOW')) {
  32. /**
  33. * @ignore
  34. */
  35. define('TAB_SHOW' ,
  36. //TAB_SHOW_ALL | // Use default
  37. TAB_SHOW_MENU_TAB |
  38. TAB_SHOW_NONE );
  39. }
  40.  
  41. /**
  42. * The url for the start of your articles
  43. * @global ARTICLE_PATH The Article Path to use
  44. */
  45. if (!defined('ARTICLE_PATH')) {
  46. //define('ARTICLE_PATH', DEFAULT_ARTICLE_PATH);
  47. }
  48.  
  49. /**
  50. * Setup the Cache Tab flag
  51. * @global CACHE_TAB The Cache Tab flag
  52. */
  53. if (!defined('CACHE_TAB')) {
  54. define('CACHE_TAB', DEFAULT_CACHE_TAB);
  55. }
  56.  
  57. /**
  58. * This is where the Cache Tab files are written, Must be chmod 0777 on nix systems
  59. * @global CACHE_TAB_PATH The Cache Tab Path to use
  60. */
  61. if (!defined('CACHE_TAB_PATH')) {
  62. define('CACHE_TAB_PATH', DEFAULT_CACHE_TAB_PATH);
  63. }
  64. ?>

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