|
From: FlorinCB <ory...@us...> - 2008-06-12 18:48:27
|
Update of /cvsroot/mxbb/mx_blogs/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10738 Added Files: _core.cfg Log Message: rename --- NEW FILE: _core.cfg --- <?php /** * * @package mxBB Portal Module - mx_blogs * @version $Id: _core.cfg,v 1.1 2008/06/12 18:47:16 orynider Exp $ * @copyright (c) 2002-2006 mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // ** Configuration file for subSilver template ** // // ** copyright (C) 2001 The phpBB Group ** // ** Created by subBlue design ** // ** www.subBlue.com ** // // *** subSilver dev. forum: www.subSky.com/phpBB2/ ** // // $Id: _core.cfg,v 1.1 2008/06/12 18:47:16 orynider Exp $ // // Please note that to enable support of different languages // the ". LANG ." place holder is available. This will be replaced // with xxx where xxx is the users selected language. If // that language isn't available it will default to english. // Therefore you MUST ensure you have at least a english // directory if you choose to localise your template // // // Do not alter this line! // if( !defined('MX_TEMPLATE_CONFIG')) { define(MX_TEMPLATE_CONFIG, TRUE); } $mx_template_config = true; $mx_template_name = 'subSilver'; // ------------------------------------------------------------------------- // Prefix with PORTAL_URL // ------------------------------------------------------------------------- // if ( empty($current_template_path) ) { $current_template_path = "templates/". $mx_template_name; } $mx_template_images = PORTAL_URL . $current_template_path . "/images"; $current_mxblogs_images = $module_root_path . "templates/". $mx_template_name ."/images"; $current_template_phpbb_images = PHPBB_URL . "templates/". $mx_template_name ."/images"; // phpBB graphics template if ( !file_exists( $current_mxblogs_images . '/lang_' . $board_config['default_lang'] ) ) { $link_language='lang_english'; } else { $link_language='lang_' . $board_config['default_lang']; } if( !defined('LANG')) { define('LANG', $link_language); } // ------------------------------------------------------------------------- // (Re)Define images // ------------------------------------------------------------------------- // Rss Feed Site Images - BEGIN $mx_images['logo_url'] = "$mx_template_images/logo.gif"; $mx_images['icon_weblog'] = "$current_mxblogs_images/" . LANG . "/icon_weblog.gif"; // Use standard phpBB graphics // $mx_images['icon_quote'] = "$current_template_phpbb_images/" . LANG . "/icon_quote.gif"; $mx_images['icon_edit'] = "$current_template_phpbb_images/" . LANG . "/icon_edit.gif"; $mx_images['icon_search'] = "$current_template_phpbb_images/" . LANG . "/icon_search.gif"; $mx_images['icon_profile'] = "$current_template_phpbb_images/" . LANG . "/icon_profile.gif"; $mx_images['icon_pm'] = "$current_template_phpbb_images/" . LANG . "/icon_pm.gif"; $mx_images['icon_email'] = "$current_template_phpbb_images/" . LANG . "/icon_email.gif"; $mx_images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; $mx_images['icon_ip'] = "$current_template_phpbb_images/" . LANG . "/icon_ip.gif"; $mx_images['icon_www'] = "$current_template_phpbb_images/" . LANG . "/icon_www.gif"; $mx_images['icon_icq'] = "$current_template_phpbb_images/" . LANG . "/icon_icq_add.gif"; $mx_images['icon_aim'] = "$current_template_phpbb_images/" . LANG . "/icon_aim.gif"; $mx_images['icon_yim'] = "$current_template_phpbb_images/" . LANG . "/icon_yim.gif"; $mx_images['icon_msnm'] = "$current_template_phpbb_images/" . LANG . "/icon_msnm.gif"; $mx_images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; $mx_images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; $mx_images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; $mx_images['forum'] = "$current_template_phpbb_images/folder_big.gif"; $mx_images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; $mx_images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; $mx_images['folder'] = "$current_template_phpbb_images/folder.gif"; $mx_images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; $mx_images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; $mx_images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; $mx_images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; $mx_images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; $mx_images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; $mx_images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; $mx_images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; $mx_images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; ?> |