.content.php
<?php /** * This file is the local content file * It may be auto generated from the database or * manually edited * * @package rejseplanen * @filesource * @see <somedir>/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 */
if (defined('HTML_COMPONENT_PAGE_PATH')) { require_once(HTML_COMPONENT_PAGE_PATH.'/Rejseplanen.php'); } if (defined('HTML_GOOGLE_ADS_PAGE_PATH')) { require_once(HTML_GOOGLE_ADS_PAGE_PATH.'/Googlesearch.php'); }
if (defined('HTML_COMPONENT_PAGE_PATH')) { Rejseplanen::display('?',CONTACT_ADDRESS); } else { Page::h1('Rejseplanen'); Page::p('HTML_COMPONENT_PAGE_PATH, is undefined'); } if (defined('HTML_GOOGLE_ADS_PAGE_PATH') && GOOGLE_ADS_SHOW & GOOGLE_ADS_SHOW_FOLDER) { Googlesearch::display(); } ?>
|