.content.php
<?php /** * This file is the local content file * It may be auto generated from the database or * manually edited * * @package design * @filesource * @see content.php * @copyright (c) http://Finn-Rasmussen.com * @license http://Finn-Rasmussen.com/license/ myPHP License conditions * @author http://Finn-Rasmussen.com * @version 1.11 * @since 27-nov-2009 */
require_once(HTML_PAGE_COMPONENT_PATH.'/Page.php'); if (defined('HTML_LAYOUT_PAGE_PATH')) { require_once(HTML_LAYOUT_UTIL_PATH.'/Design.php'); } if (defined('HTML_COMPONENT_PAGE_PATH')) { require_once(HTML_COMPONENT_PAGE_PATH.'/Rejseplanen.php'); require_once(HTML_COMPONENT_PAGE_PATH.'/Google.php'); require_once(HTML_COMPONENT_PAGE_PATH.'/Domains.php'); Rejseplanen::display(CONTACT_ADDRESS); if (defined('HTML_GOOGLE_ADS_RESOURCE_PATH')) { if (GOOGLE_ADS_SHOW & GOOGLE_ADS_SHOW_FOLDER) { Google::display(DOMAIN_NAME); } } $domains = array('finnrasmussen.dk','hvepse.dk'); Domains::display($domains); Design::display($DEFINE_COMPONENT_SHOW, DESIGN_TYPE_CHECKBOX, Request::get(REQUEST_COMPONENT_SHOW,COMPONENT_SHOW),REQUEST_COMPONENT_SHOW); } else { Page::p('HTML_COMPONENT_PAGE_PATH, is undefined'); } ?>
|