Willkommen Panel

Aus PHP-Fusion Wiki

Wechseln zu: Navigation, Suche

Das Willkommen Panel ist einen Mitte-Panel was dazu dient einen Begrüßungstext auf der Startseite anzuzeigen. Den Inhalt des Willkommen Panel wird in den Haupteinstellungen (System-Admin) eingegeben.

[Bearbeiten] Modifikationen

[Bearbeiten] Willkommen Panel nur für Gäste

Damit der Begüßungstext nach dem Login verschwindet, ist diese kleine Modifikation nötig: Die Datei infusions/welcome_message_panel/welcome_message_panel.php öffnen

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| 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
+----------------------------------------------------*/
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
 
opentable($locale['024']);
echo stripslashes($settings['siteintro'])."\n";
closetable();
?>

und wie folgt abändern:

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| 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
+----------------------------------------------------*/
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
 
if (iGUEST) {
opentable($locale['024']);
echo stripslashes($settings['siteintro'])."\n";
closetable();
}
?>