- <?
- /**
- * This file defines the page vars
- * <code>
- * Usage:
- * in index.php, require_once('./config.php');
- * </code>
- *
- * @package layout
- * @filesource
- * @see config.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
- */
-
- /**
- * LAYOUT_SHOW
- * Choose, which layout components to show
- * or extract info from GET/POST
- */
- if (defined('HTML_LAYOUT_PAGE_PATH')) {
- if (!defined('LAYOUT_SHOW')) {
- /**
- * @ignore
- */
- define('LAYOUT_SHOW' ,
- //LAYOUT_SHOW_ALL | // Use default
-
- LAYOUT_SHOW_BANNER |
- LAYOUT_SHOW_BANNERIF |
- LAYOUT_SHOW_LINE |
- LAYOUT_SHOW_LOCATOR |
- LAYOUT_SHOW_WEBMASTER |
- LAYOUT_SHOW_PROFILE |
- LAYOUT_SHOW_CUSTOMER |
- LAYOUT_SHOW_COMPANY |
- LAYOUT_SHOW_FIRMA |
- LAYOUT_SHOW_FOOTER |
- LAYOUT_SHOW_COPYRIGHT |
- LAYOUT_SHOW_TOP |
- LAYOUT_SHOW_BRANDING |
- LAYOUT_SHOW_NONE
- );
- }
- }
-
- ?>