[Phpbbkb-checkins] SF.net SVN: phpbbkb: [6] phpBB2/root
Status: Alpha
Brought to you by:
markthedaemon
From: <mar...@us...> - 2006-08-28 00:25:54
|
Revision: 6 Author: markthedaemon Date: 2006-08-27 17:25:46 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpbbkb/?rev=6&view=rev Log Message: ----------- Adding the start for a administration section for the KB Added Paths: ----------- phpBB2/root/admin/ phpBB2/root/admin/admin_kb.php Added: phpBB2/root/admin/admin_kb.php =================================================================== --- phpBB2/root/admin/admin_kb.php (rev 0) +++ phpBB2/root/admin/admin_kb.php 2006-08-28 00:25:46 UTC (rev 6) @@ -0,0 +1,42 @@ +<?php +/*************************************************************************** + * admin_kb.php + * ------------------- + * begin : Thursday, Jul 12, 2001 + * copyright : (C) 2001 phpBB Knowledge Base + * URL : http://www.phpbbknowledgebase.com + * + * $Id: admin_kb.php,v 1.0.0.0 2006/08/28 21:55:09 markthedaemon Exp $ + * + ***************************************************************************/ + +/*************************************************************************** + * + * 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['Forums']['Manage'] = $file; + return; +} + +// +// Load default header +// +$phpbb_root_path = "./../"; +require($phpbb_root_path . 'extension.inc'); +require('./pagestart.' . $phpEx); +include($phpbb_root_path . 'includes/functions_admin.'.$phpEx); + + +include('./page_footer_admin.'.$phpEx); + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |