View Single Post
  #4  
Old 03-17-2012, 09:46 PM
stangger5's Avatar
stangger5 stangger5 is offline
 
Join Date: Jan 2005
Location: Online
Posts: 1,130
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Let me see what I can come up with and I`ll let you know..

--------------- Added [DATE]1332024253[/DATE] at [TIME]1332024253[/TIME] ---------------

Ok,,I have it done...

Do you want the Arcade Announcements: to show on My Favorites page ??

You need to edit three files (Skins and mod_favorites) and get info from anther one(arcade)..

Lets start small...

Look at arcade.php file and find this:

PHP Code:
        // Newest Games
                
$DB->query("SELECT g.gid, g.gtitle, g.gname, g.gcat, cat.password, cat.active FROM ibf_games_list AS g, ibf_games_cats AS cat WHERE g.active=1 AND cat.active=1 AND g.gcat=cat.c_id AND trim(password)='' ORDER BY g.added DESC LIMIT ".$this->arcade->settings['games_new']);
                
$firstnew true;
                while(
$newgline $DB->fetch_row()) {
                        if(
$firstnew) {
                                
$firstnew false;
                        } else {
                                
$new_games .= "<br />\n";
                        }

                        
$new_games .= "<img src='arcade/images/{$newgline[gname]}2.gif' alt='' width='20' height='20' /> <a href='".$ibforums->base_url."act=Arcade&amp;do=play&amp;gameid={$newgline['gid']}'>{$newgline['gtitle']}</a> ";
                        }
                
// End Newest Games 
The code above,,you`ll need to change every $this to $main..

Paste that code in the mod_favorites,, right before:
PHP Code:
$this->html .= $main->html->favorites($the_games,$stylecolumns); 
Then add $new_games to the above,,like this:
PHP Code:
$this->html .= $main->html->favorites($the_games,$new_games,$stylecolumns); 
Now go to you skin file and look for:
PHP Code:
function favorites($game_list,$stylecolumns) { 
add $new_games to it..
PHP Code:
function favorites($game_list,$new_games,$stylecolumns) { 
PHP Code:
global $ibforums;
return <<<
EOF 
Add this below that:
PHP Code:
                <div class="tborder">
                        <
table width='100%' border='0' cellspacing='1' cellpadding='4'>
                        <
tr>
                        <
td align="center" width="20%" nowrap="nowrap" class="blockhead">{$ibforums->lang['infobox_newgames']}</td>
                        </
tr>

                        <
tr>
                              <
td class="alt2" align="left" valign="top" style="width: 20%;padding-right:7px;padding-top:5px;padding-bottom:5px;">

                        {
$new_games}

                        </
td>
                        </
tr>
                        </
table>                
</
div
That should get you started..

Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01304 seconds
  • Memory Usage 1,810KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete