Antal indlæg: 147 Tilmeldt: 28.06.08 Sidst set: 27.12.12 On/Offline: Offline Status:
Ingen status er valgt Dagens humør:
Hvordan er reglen hvis man vil have indholdet af et element direkte i Theme.php.
Her er koden til elementet, men hvis jeg ønsker at sætter det direkte i theme.php, feks. ved siden af mine links (menu)
Kode
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: kickoff_panel.php
| Author: TNGrafik, Smokeman
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }
include INFUSIONS."kickoff_panel/infusion_db.php";
if (file_exists(INFUSIONS."kickoff_panel/locale/".$settings['locale'].".php")) {
include INFUSIONS."kickoff_panel/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."kickoff_panel/locale/English.php";
}
$result = dbquery("SELECT * FROM ".DB_KOP);
$data = dbarray($result);