|
From: OryNider <ory...@us...> - 2008-03-21 08:52:41
|
Update of /cvsroot/mxbb/mx_radiocast/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22296/templates/subSilver Added Files: mx_radiocast.cfg Removed Files: subSilver.cfg Log Message: version 1.02 --- NEW FILE: mx_radiocast.cfg --- <?php /** * * @package mxBB Portal Module - mx_radiocast * @version $Id: mx_radiocast.cfg,v 1.1 2008/03/21 08:51:11 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: mx_radiocast.cfg,v 1.1 2008/03/21 08:51:11 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! // @define(MX_TEMPLATE_CONFIG, TRUE); $mx_template_config = true; $mx_template_name = 'subSilver'; // ------------------------------------------------------------------------- // Prefix with PORTAL_URL // ------------------------------------------------------------------------- // $current_template_images = PORTAL_URL . $current_template_path . "/images"; $current_template_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_template_images . '/lang_' . $board_config['default_lang'] ) ) { $link_language='lang_english'; } else { $link_language='lang_' . $board_config['default_lang']; } define('LANG', $link_language); // ------------------------------------------------------------------------- // (Re)Define images // ------------------------------------------------------------------------- $mx_images['post_station'] = "$current_template_images/{LANG}/icon_add_station.gif"; $mx_images['real_front'] = "$current_template_images/real_front.gif"; $mx_images['wmp_front'] = "$current_template_images/wmp_front.gif"; $mx_images['iframe_bg'] = "$current_template_images/iframe_bg.png"; $mx_images['no_image'] = "$current_template_images/no_image.gif"; $mx_images['radio_front'] = "$current_template_images/radio_front.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"; ?> --- subSilver.cfg DELETED --- |