コード例 #1
0
ファイル: item_stats.func.php プロジェクト: Carbenium/aowow
 public function __construct($start, $limit, array $ids)
 {
     $this->statCols = DB::Aowow()->selectCol('SELECT `COLUMN_NAME` FROM `INFORMATION_SCHEMA`.`COLUMNS` WHERE `TABLE_NAME` LIKE "%item_stats"');
     $this->queryOpts['i']['o'] = 'i.id ASC';
     unset($this->queryOpts['is']);
     // do not reference the stats table we are going to write to
     $conditions = array(['i.id', $start, '>'], ['class', [ITEM_CLASS_WEAPON, ITEM_CLASS_GEM, ITEM_CLASS_ARMOR, ITEM_CLASS_CONSUMABLE]], $limit);
     if ($ids) {
         $conditions[] = ['id', $ids];
     }
     parent::__construct($conditions);
 }