30 lines
728 B
PHP
30 lines
728 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Author: lopiu
|
||
|
* Date: 06.07.2020
|
||
|
* Time: 22:41
|
||
|
*/
|
||
|
|
||
|
class DressedItems
|
||
|
{
|
||
|
protected $DB;
|
||
|
private $dressedItem;
|
||
|
|
||
|
public function __construct(int $user_id)
|
||
|
{
|
||
|
try {
|
||
|
$this->DB = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $user_id);
|
||
|
} catch (\Krugozor\Database\Mysql\Exception $exception) {
|
||
|
echo '<div class="debug">' . $exception . '</div>';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function getDressedItems()
|
||
|
{
|
||
|
while ($row = $this->DB->fetch_assoc()) {
|
||
|
$dressed_item[$row['dressed_slot']] = $row;
|
||
|
$this->dressedItem[$row['dressed_slot']] = $row;
|
||
|
}
|
||
|
return $this->dressedItem;
|
||
|
}
|
||
|
}
|