Log in

View Full Version : [AddOn] Extra Search Functions


Gemma
04-12-2006, 07:56 PM
This simple edit will allow you to add search by Name,Times Played,Rating,Date Added and Jackpot (if you use vbPlaza/Jackpots) to your arcade

Open skin_Arcade and find:
function top_links_table_extra($cat , $selected) {
global $ibforums;
return <<<EOF
<td class="alt1" align="right" width="5%">
&nbsp;
</td>
EOF;
}

Replace it wit:
function top_links_table_extra($cat , $selected) {
global $ibforums;
return <<<EOF
<td class="alt1" align="center" width="100%">
<form action="{$ibforums->base_url}act=Arcade{$cat}" method="post">
<select class="codebuttons" name="overwrite_sort">
<option value="gtitle" {$selected['sort']['gtitle']}>{$ibforums->lang['gname']}</option>
<option value="gcount" {$selected['sort']['gcount']}>{$ibforums->lang['times_p']}</option>
<option value="g_rating" {$selected['sort']['g_rating']}>{$ibforums->lang['rating_s']}</option>
<option value="added" {$selected['sort']['added']}>{$ibforums->lang['dateadded']}</option>
<option value="jackpot" {$selected['jackpot']}>{$ibforums->lang['gb_jackpot']}</option>
</select>
<select class="codebuttons" name="overwrite_order">
<option value="ASC" {$selected['order']['ASC']}>{$ibforums->lang['asc']}</option>
<option value="DESC" {$selected['order']['DESC']}>{$ibforums->lang['desc']}</option>
</select>
<input type="submit" value="{$ibforums->lang['sort_em']}" class="button" />
</form>
</td>
EOF;
}

Save the file

Open your lang_Arcade_en.php and find:
gb_win_jackpot_raising => "Jackpot: ",

Below that add:
gb_jackpot => "Jackpot",
dateadded => "Date Added",

Save and upload