New file:filename.php
<?php /*---------------------------------------------------------+ | BS-Fusion 1.00 - Content Management System +----------------------------------------------------------+ | Copyright © 2009 Manuel Kurz | http://www.bs-fusion.org/ +----------------------------------------------------------+ | Released under the terms & conditions of v2 of the | GNU General Public License. For details refer to | the included gpl.txt file or visit http://gnu.org +----------------------------------------------------------+ | Code based on PHP-Fusion | http://www.php-fusion.co.uk/ +----------------------------------------------------------*/ require_once "../../maincore.php";
######### embedding the language file ############## if (file_exists(INFUSIONS."infusionname/locale/".LANGUAGE.".php")) { include INFUSIONS."infusionname/locale/".LANGUAGE.".php"; } else { include INFUSIONS."infusionname/locale/German.php"; }
// Give your own page title $tpl->add_to_title('New title");
// insert the subheader file require_once BASEDIR."subheader.php";
########### Linke Panels einbinden ############### define("LEFT_OFF",false); // true = Panels nicht anzeigen; false=Panels anzeigen require_once BASEDIR."side_left.php";
############## Hier beginnt dein Code ############
########### Rechte Panels einbinden ############## define("RIGHT_OFF",false); // true = Panels nicht anzeigen; false = Panels anzeigen require_once BASEDIR."side_right.php";
############ Footerdatei einbinden ################ require_once BASEDIR."footer.php"; ?>
|