- <?
- /**
- * The Setup resource file for the the Tab package
- * Setup of the Component system constants
- * Use the default value if not defined
- *
- * @package tab
- * @filesource
- * @see HTML_TAB_RESOURCE_PATH/Setup.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 layout Tab components to show when printing
- * @global TAB_SHOW_PRINTER The Tab to Show when Printing
- */
- if (!defined('TAB_SHOW_PRINTER')) {
- define('TAB_SHOW_PRINTER' ,
- TAB_SHOW_NONE ); // Show Printer Components
- }
-
- /**
- * Choose, which layout Tab components to show
- * or extract info from GET/POST
- * @global TAB_SHOW The Tab to Show
- */
- if (!defined('TAB_SHOW')) {
- /**
- * @ignore
- */
- define('TAB_SHOW' ,
- //TAB_SHOW_ALL | // Use default
-
- TAB_SHOW_MENU_TAB |
- TAB_SHOW_NONE );
- }
-
- /**
- * The url for the start of your articles
- * @global ARTICLE_PATH The Article Path to use
- */
- if (!defined('ARTICLE_PATH')) {
- //define('ARTICLE_PATH', DEFAULT_ARTICLE_PATH);
- }
-
- /**
- * Setup the Cache Tab flag
- * @global CACHE_TAB The Cache Tab flag
- */
- if (!defined('CACHE_TAB')) {
- define('CACHE_TAB', DEFAULT_CACHE_TAB);
- }
-
- /**
- * This is where the Cache Tab files are written, Must be chmod 0777 on nix systems
- * @global CACHE_TAB_PATH The Cache Tab Path to use
- */
- if (!defined('CACHE_TAB_PATH')) {
- define('CACHE_TAB_PATH', DEFAULT_CACHE_TAB_PATH);
- }
- ?>