当前位置: 首页>>代码示例>>PHP>>正文


PHP Items::InventoryTypeTranslation方法代码示例

本文整理汇总了PHP中Items::InventoryTypeTranslation方法的典型用法代码示例。如果您正苦于以下问题:PHP Items::InventoryTypeTranslation方法的具体用法?PHP Items::InventoryTypeTranslation怎么用?PHP Items::InventoryTypeTranslation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Items的用法示例。


在下文中一共展示了Items::InventoryTypeTranslation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: GetAllItemsInSubCategoryByInventoryType

 public static function GetAllItemsInSubCategoryByInventoryType($CategoryID, $SubCategoryID, $InventoryType, $Offset)
 {
     global $FCCore;
     $Result = array();
     $Statement = Items::$WConnection->prepare('
         SELECT
             it.*,
             LOWER(fi.iconname) as icon
         FROM
             item_template it
         LEFT JOIN ' . $FCCore['Database']['database'] . '.freedomcore_icons fi ON
             it.displayid = fi.id
         WHERE
                 it.class = :class
             AND
                 it.subclass = :subclass
             AND
                 it.InventoryType = :invtype
         ORDER BY it.ItemLevel DESC
         LIMIT 50 OFFSET ' . $Offset . '
     ');
     $Statement->bindParam(':class', $CategoryID);
     $Statement->bindParam(':subclass', $SubCategoryID);
     $Statement->bindParam(':invtype', $InventoryType);
     $Statement->execute();
     $Result['item_list'] = $Statement->fetchAll(PDO::FETCH_ASSOC);
     if (!empty($Result['item_list'])) {
         for ($i = 0; $i < 1; $i++) {
             $Result['category_data'] = array('name' => Items::ItemClass($Result['item_list'][$i]['class']), 'subname' => Items::ItemSubClass($Result['item_list'][$i]['class'], $Result['item_list'][$i]['subclass']), 'inventorytype' => array('id' => $InventoryType, 'translation' => Items::InventoryTypeTranslation($InventoryType)));
         }
     }
     $Index = 0;
     if (!empty($Result['item_list'])) {
         foreach ($Result['item_list'] as $Item) {
             $Result['item_list'][$Index]['subclass'] = Items::ItemSubClass($Item['class'], $Item['subclass']);
             $Result['item_list'][$Index]['class'] = Items::ItemClass($Item['class']);
             $Index++;
         }
     }
     return array('count' => Items::SelectCount('item_template', array('class' => $CategoryID, 'subclass' => $SubCategoryID, 'InventoryType' => $InventoryType)), 'items' => $Result);
 }
开发者ID:Expecto,项目名称:FreedomCore,代码行数:41,代码来源:Items.FreedomCore.php

示例2: GetItemArrayData

 private static function GetItemArrayData($ItemArray)
 {
     global $FCCore;
     $SQL = 'SELECT
             it.entry,
             it.class,
             it.subclass,
             it.name,
             it.displayid,
             it.Quality,
             it.BuyPrice,
             it.SellPrice,
             it.bonding,
             it.RequiredLevel,
             it.InventoryType,
             LOWER(fi.iconname) as icon
         FROM
             item_template it
         LEFT JOIN ' . $FCCore['Database']['database'] . '.freedomcore_icons fi ON
             it.displayid = fi.id
         WHERE
             entry IN (' . $ItemArray . ')';
     $Statement = Zones::$WConnection->prepare($SQL);
     $Statement->execute();
     $Result = $Statement->fetchAll(PDO::FETCH_ASSOC);
     $ArrayIndex = 0;
     foreach ($Result as $Item) {
         $Result[$ArrayIndex]['subclass'] = Items::ItemSubClass($Item['class'], $Item['subclass']);
         $Result[$ArrayIndex]['class'] = Items::ItemClass($Item['class']);
         $Result[$ArrayIndex]['BuyPrice'] = Text::MoneyToCoins($Item['BuyPrice']);
         $Result[$ArrayIndex]['SellPrice'] = Text::MoneyToCoins($Item['SellPrice']);
         $Result[$ArrayIndex]['bond_translation'] = Items::BondTranslation($Item['bonding']);
         $Result[$ArrayIndex]['it_translation'] = Items::InventoryTypeTranslation($Item['InventoryType']);
         $ArrayIndex++;
     }
     return $Result;
 }
开发者ID:anonymous33rus,项目名称:FreedomCore,代码行数:37,代码来源:Zones.FreedomCore.php


注:本文中的Items::InventoryTypeTranslation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。