game/_incl_data/class/ItemModel.php

28 lines
618 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Core\Db;
/** Предметы которые никому не принадлежат. Не перепутай! */
class ItemModel
{
private $item;
public function __construct(int $id)
{
$this->item = Db::getRow('select * from items_main where id = ?', [$id]);
}
public static function getItemData(int $id): string
{
return Db::getValue('select data from items_main_data where items_id = ?', [$id]);
}
public function getName()
{
return $this->item['name'];
}
public function getImage()
{
return $this->item['img'];
}
}