|
From: Jon O. <jon...@us...> - 2008-06-23 20:20:09
|
Update of /cvsroot/mxbb/mx_ggsitemaps_adv/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19841/admin Added Files: admin_mx_ggsitemap.php index.htm Log Message: I've added the full featured ggsitemaps module as mx_ggsitemaps_adv --- NEW FILE: admin_mx_ggsitemap.php --- <?php /** * * @package phpBB SEO GYM Sitemaps * @version $Id: admin_mx_ggsitemap.php,v 1.1 2008/06/23 20:19:59 jonohlsson Exp $ * @copyright (c) 2006 dcz - www.phpbb-seo.com * @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License * */ // I know phpBB.com would prefer another methode here, but it's kind of tricky // to go for the auto extension.inc include before we know where to search for it // as this code is meant to locate some code. // I think this method is reliable enough, and since phpBB3 uses it ... $phpEx = substr(strrchr(__FILE__, '.'), 1); if ( file_exists( 'admin_board.' . $phpEx ) ) { define('IN_PHPBB', 1); $admin_root_path1 = 'admin/'; [...1043 lines suppressed...] "L_RSS_SETTINGS_KB" => $lang['rss_kb_settings'], "L_RSS_EXCLUDE_KB" => $lang['rss_exclude_kb'], "L_RSS_EXCLUDE_KB_EXPLAIN" => $lang['rss_exclude_kb_explain'], "RSS_EXCLUDE_KB" => $new['rss_exclude_kbcat'], // Yahoo Settings "L_YAHOO_KB_SETTINGS" => $lang['yahoo_kb_settings'], "L_YAHOO_EXCLUDE_KB" => $lang['yahoo_exclude_kb'], "L_YAHOO_EXCLUDE_KB_EXPLAIN" => $lang['yahoo_exclude_kb_explain'], "YAHOO_EXCLUDE_KB" => $new['yahoo_exclude_kbcat'], ) ); } $template->pparse('admin_ggsitemap'); include_once($mx_root_path.$admin_root_path1 . 'page_footer_admin.'.$phpEx); ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |