|
From: OryNider <ory...@us...> - 2008-01-29 07:54:21
|
Update of /cvsroot/mxbb/mx_music/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13525/prosilver Added Files: music_lists.html prosilver.cfg Log Message: This upgrade will make mx_music compatible with 2.9 --- NEW FILE: prosilver.cfg --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: prosilver.cfg,v 1.1 2008/01/29 07:54:18 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: prosilver.cfg,v 1.1 2008/01/29 07:54:18 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 // ------------------------------------------------------------------------- // $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 // ------------------------------------------------------------------------- // MOM Pics $mx_images['upload_song'] = "$current_template_images/" . LANG . "/upload_song.gif"; $mx_images['no_image'] = "$current_template_images/no_image.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"; ?> --- NEW FILE: music_lists.html --- <div class="forabg"> <div class="inner" style="vertical-align:top; display:block"> <div class="textbody"></div> <dl> <dt class="row1" style="text-align:left">{L_RECENT_SONGS}</dt> </dl> <!-- BEGIN music_lists_no_songs --> <dl> <dt class="row2" style="text-align:left">{L_NO_SONGS}</dt> </dl> <!-- END music_lists_no_songs --> <!-- BEGIN music_recent --> <dl> <dt class="row2" style="vertical-align:top"> <!-- END music_recent --> <!-- BEGIN music_recent_lists --> <li class="row<!-- IF music_recent_lists.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF music_recent_lists.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF music_recent_lists.S_POST_STICKY --> sticky<!-- ENDIF --><!-- music_recent_lists.S_TOPIC_REPORTED --> reported<!-- ENDIF -->"> <dl class="icon" style="text-align:left"> {music_recent_lists.BULLET} <span class="genmed">{music_recent_lists.TITLE}</span> </dl> <dl style="text-align:right"> <span class="gensmall">{music_recent_lists.L_POSTER}: {music_recent_lists.POSTER}</span> </dl> </li> <!-- END music_recent_lists --> <!-- BEGIN music_recent --> </dt> </dl> <!-- END music_recent --> </div> <span class="corners-bottom"><span></span></span> </div> <br clear="all" /> |