Ignore:
Timestamp:
Dec 23, 2007, 2:55:36 PM (17 years ago)
Author:
george
Message:

Minimanager 0.1.6b

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/ahstats.php

    r142 r178  
    88 * License: GNU General Public License v2(GPL)
    99 */
    10  
     10
    1111require_once("header.php");
    1212valid_login(0);
     
    4444        } else $order_side = "";
    4545 } else $order_side = "";
    46  
     46
    4747 $result = $sql->query("SELECT `character`.`name` AS `seller`, `auctionhouse`.`item_template` AS `itemid`, `item_template`.`name` AS `itemname`, `auctionhouse`.`buyoutprice` AS `buyout`,
    4848 `auctionhouse`.`time`-unix_timestamp(), `c2`.`name` AS `encherisseur`, `auctionhouse`.`lastbid`, `auctionhouse`.`startbid`, SUBSTRING_INDEX(SUBSTRING_INDEX(`item_instance`.`data`, ' ',15), ' ',-1) AS qty, `character`.`race` AS seller_race, `c2`.`race` AS buyer_race
     
    5858           <input type=\"hidden\" name=\"action\" value=\"search_auctions\" />
    5959           <input type=\"hidden\" name=\"error\" value=\"2\" />
    60                 <table class=\"hidden\"> 
     60                <table class=\"hidden\">
    6161                <tr><td>
    6262          <td><input type=\"text\" size=\"25\" name=\"search_value\" /></td>
     
    6868                <option value=\"buyer_name\">{$lang_auctionhouse['buyer_name']}</option>
    6969           </select></td>
    70            
     70
    7171           <td><select name=\"search_class\">
    7272            <option value=\"-1\">{$lang_auctionhouse['all']}</option>
     
    8282                <option value=\"15\">{$lang_item['misc_short']}</option>
    8383           </select></td>
    84            
     84
    8585           <td><select name=\"search_quality\">
    8686                <option value=\"-1\">{$lang_auctionhouse['all']}</option>
     
    9999 $output .= generate_pagination("ahstats.php?action=browse_auctions&amp;order_by=$order_by&amp;dir=".!$dir, $all_record, $itemperpage, $start);
    100100 $output .= "</td></tr></table>
    101  
     101
    102102 <table class=\"lined\">
    103103   <tr>
     
    121121                        $value = "<b>".((!empty($rows[10])) ? "<font color=".$sidecolor[$rows[10]].">$value</font>" : "N/A")."</b>";
    122122                        break;
    123                         case 7:                 
     123                        case 7:
    124124                        case 6:
    125125                        case 3:
     
    129129                        $value -= $s*100;
    130130                        $c = $value;
    131                         $value = $g."<img src=\"./img/gold.gif\" /> ".$s."<img src=\"./img/silver.gif\" /> ".$c."<img src=\"./img/copper.gif\" /> ";           
     131                        $value = $g."<img src=\"./img/gold.gif\" /> ".$s."<img src=\"./img/silver.gif\" /> ".$c."<img src=\"./img/copper.gif\" /> ";
    132132                        break;
    133133                        case 2:
    134                         $value = "<a href=\"$item_datasite$rows[1]\" target=\"_blank\" onmouseover=\"toolTip('".addslashes(get_item_tooltip($rows[1]))."','item_tooltip')\" onmouseout=\"toolTip()\"><img src=\"".get_icon($rows[1])."\" class=\"icon_border\" alt=\"$value\"><br/>$value".(($rows[8]>1) ? " (x$rows[8])" : "")."</img></a>";
     134                        $value = "<a href=\"$item_datasite$rows[1]\" target=\"_blank\" onmouseover=\"toolTip('".addslashes(get_item_tooltip($rows[1]))."','item_tooltip')\" onmouseout=\"toolTip()\"><img src=\"".get_icon($rows[1])."\" class=\"icon_border_0\" alt=\"$value\"><br/>$value".(($rows[8]>1) ? " (x$rows[8])" : "")."</img></a>";
    135135                        break;
    136136                        case 0:
     
    143143 }
    144144 $sql->close();
    145  
     145
    146146 $output .= "<tr><td colspan=\"7\" class=\"hidden\" align=\"right\">{$lang_auctionhouse['total_auctions']} : $all_record</td></tr>
    147147   </table></center>";
     
    153153//########################################################################################################################
    154154function search_auctions() {
    155  global $lang_auctionhouse, $lang_global, $lang_item, $output, $characters_db, $realm_id, $mangos_db, 
     155 global $lang_auctionhouse, $lang_global, $lang_item, $output, $characters_db, $realm_id, $mangos_db,
    156156
    157157                $itemperpage, $item_datasite, $server, $user_lvl, $user_id, $sql_search_limit;
     
    186186        } else $order_side = "";
    187187 } else $order_side = "";
    188  
     188
    189189 switch ($search_by) {
    190190        case "item_name":
    191        
     191
    192192         if(( ($search_class >= 0) || ($search_quality >= 0))&&(!isset($search_value))){
    193193                if ($search_class >= 0) $search_filter = " AND item_template.class = '$search_class'";
     
    199199                if ($search_class >= 0) $item_prefix .= "AND class = '$search_class' ";
    200200                if ($search_quality >= 0) $item_prefix .= "AND Quality = '$search_quality' ";
    201                
     201
    202202                $result = $sql->query("SELECT entry FROM `mangos`.`item_template` WHERE name LIKE '%$search_value%' $item_prefix");
    203203                $search_filter = "AND auctionhouse.item_template IN(0";
     
    206206        }
    207207        break;
    208                
     208
    209209        case "item_id":
    210210                $search_filter = "AND auctionhouse.item_template = '$search_value'";
     
    241241          <tr><td>
    242242                <input type=\"text\" size=\"30\" name=\"search_value\" />
    243            
     243
    244244          <select name=\"search_by\">
    245245            <option value=\"item_name\">{$lang_auctionhouse['item_name']}</option>
     
    248248                <option value=\"buyer_name\">{$lang_auctionhouse['buyer_name']}</option>
    249249           </select></form>
    250            
     250
    251251           <select name=\"search_class\">
    252252            <option value=\"-1\">{$lang_auctionhouse['all']}</option>
     
    262262                <option value=\"15\">{$lang_item['misc_short']}</option>
    263263           </select>
    264            
     264
    265265          <select name=\"search_quality\">
    266266                <option value=\"-1\">{$lang_auctionhouse['all']}</option>
     
    278278 $output .= "</td>
    279279  </tr></table></form>
    280  
     280
    281281 <table class=\"lined\">
    282282   <tr>
     
    300300                        $value = "<b>".((!empty($rows[10])) ? "<font color=".$sidecolor[$rows[10]].">$value</font>" : "N/A")."</b>";
    301301                        break;
    302                         case 7:                 
     302                        case 7:
    303303                        case 6:
    304304                        case 3:
     
    308308                        $value -= $s*100;
    309309                        $c = $value;
    310                         $value = $g."<img src=\"./img/gold.gif\" /> ".$s."<img src=\"./img/silver.gif\" /> ".$c."<img src=\"./img/copper.gif\" /> ";           
     310                        $value = $g."<img src=\"./img/gold.gif\" /> ".$s."<img src=\"./img/silver.gif\" /> ".$c."<img src=\"./img/copper.gif\" /> ";
    311311                        break;
    312312                        case 2:
    313                         $value = "<a href=\"$item_datasite$rows[1]\" target=\"_blank\" onmouseover=\"toolTip('".addslashes(get_item_tooltip($rows[1]))."','item_tooltip')\" onmouseout=\"toolTip()\"><img src=\"".get_icon($rows[1])."\" class=\"icon_border\" alt=\"$value\"><br/>$value".(($rows[8]>1) ? " (x$rows[8])" : "")."</img></a>";
     313                        $value = "<a href=\"$item_datasite$rows[1]\" target=\"_blank\" onmouseover=\"toolTip('".addslashes(get_item_tooltip($rows[1]))."','item_tooltip')\" onmouseout=\"toolTip()\"><img src=\"".get_icon($rows[1])."\" class=\"icon_border_0\" alt=\"$value\"><br/>$value".(($rows[8]>1) ? " (x$rows[8])" : "")."</img></a>";
    314314                        break;
    315315                        case 0:
     
    322322 }
    323323 $sql->close();
    324  
     324
    325325 $output .= "<tr><td colspan=\"7\" class=\"hidden\" align=\"right\">{$lang_auctionhouse['tot_found']} : $tot_found {$lang_global['limit']} : $sql_search_limit</td></tr>
    326326   </table></center>";
     
    332332//########################################################################################################################
    333333$err = (isset($_GET['error'])) ? $_GET['error'] : NULL;
    334        
     334
    335335$output .= "<div class=\"top\">";
    336336switch ($err) {
     
    349349
    350350switch ($action) {
    351 case "browse_auctions": 
     351case "browse_auctions":
    352352   browse_auctions();
    353353   break;
    354 case "search_auctions": 
     354case "search_auctions":
    355355   search_auctions();
    356356   break;
Note: See TracChangeset for help on using the changeset viewer.