Neuse Seite im ACP erstellen
Verfasst: 02.11.2005 17:35
Hallo!
Wie kann ich eine Neue Seite im phpBBAcp erstellen
Wie kann ich eine Neue Seite im phpBBAcp erstellen
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
define('IN_PHPBB', 1);
if( !empty($setmodules) )
{
$file = basename(__FILE__);
$module['DeineRubrik']['TitelDerSeite'] = "$file";
return;
}Code: Alles auswählen
<?php
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
define('IN_PHPBB', 1);
if( !empty($setmodules) )
{
$file = basename(__FILE__);
$module['General']['Word_Censor'] = "$file";
return;
}
//
// Load default header
//
$phpbb_root_path = "./../";
require($phpbb_root_path . 'extension.inc');
require('./pagestart.' . $phpEx);
// Dein Skript hier
include('./page_footer_admin.'.$phpEx);
?>Code: Alles auswählen
$module['General']['Word_Censor']Code: Alles auswählen
Word_Censor