test
This commit is contained in:
parent
083f4fe438
commit
7af574a0f9
@ -14,8 +14,8 @@ class DressedItems
|
|||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$this->DB = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $user_id);
|
$this->DB = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i AND dressed_slot > 0', $user_id);
|
||||||
} catch (\Krugozor\Database\Mysql\Exception $exception) {
|
} catch (Exception $e) {
|
||||||
echo '<div class="debug">' . $exception . '</div>';
|
echo '<div class="debug">' . $e . '</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,36 +67,36 @@ class User
|
|||||||
}
|
}
|
||||||
$di = new DressedItems($this->id);
|
$di = new DressedItems($this->id);
|
||||||
$di->getDressedItems();
|
$di->getDressedItems();
|
||||||
// for ($i = 1; $i <= 12; $i++) {
|
|
||||||
// echo sprintf('<div class="slot-%s">', $i);
|
|
||||||
// if (isset($dressed_item[$i])) {
|
|
||||||
// if (!$isBattle && $isMain) {
|
|
||||||
// $itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
|
||||||
// echo sprintf($itemString, $i, $dressed_item[$i]['image'], $dressed_item[$i]['name'], $dressed_item[$i]['name']);
|
|
||||||
// } else {
|
|
||||||
// $itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
|
||||||
// echo sprintf($itemString, $dressed_item[$i]['image'], $dressed_item[$i]['name'], $dressed_item[$i]['name']);
|
|
||||||
// }
|
|
||||||
// } else {
|
|
||||||
// echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
|
||||||
// }
|
|
||||||
// echo sprintf('</div><!-- slot-%s -->', $i);
|
|
||||||
// }
|
|
||||||
for ($i = 1; $i <= 12; $i++) {
|
for ($i = 1; $i <= 12; $i++) {
|
||||||
echo sprintf('<div class="slot-%s">', $i);
|
echo sprintf('<div class="slot-%s">', $i);
|
||||||
if (isset($di->getDressedItems()[$i])) {
|
if (isset($dressed_item[$i])) {
|
||||||
if (!$isBattle && $isMain) {
|
if (!$isBattle && $isMain) {
|
||||||
$itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
$itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
||||||
echo sprintf($itemString, $i, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
echo sprintf($itemString, $i, $dressed_item[$i]['image'], $dressed_item[$i]['name'], $dressed_item[$i]['name']);
|
||||||
} else {
|
} else {
|
||||||
$itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
$itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
||||||
echo sprintf($itemString, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
echo sprintf($itemString, $dressed_item[$i]['image'], $dressed_item[$i]['name'], $dressed_item[$i]['name']);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
||||||
}
|
}
|
||||||
echo sprintf('</div><!-- slot-%s -->', $i);
|
echo sprintf('</div><!-- slot-%s -->', $i);
|
||||||
}
|
}
|
||||||
|
// for ($i = 1; $i <= 12; $i++) {
|
||||||
|
// echo sprintf('<div class="slot-%s">', $i);
|
||||||
|
// if (isset($di->getDressedItems()[$i])) {
|
||||||
|
// if (!$isBattle && $isMain) {
|
||||||
|
// $itemString = '<a href="?edit=1&drop=%s"><img src="/i/sh/%s" class="item-wrap-normal" alt="%s" title="%s"></a>';
|
||||||
|
// echo sprintf($itemString, $i, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
||||||
|
// } else {
|
||||||
|
// $itemString = '<img src="/i/sh/%s" class="item-wrap-normal tip" alt="%s"><span class="tiptext"><strong>%s</strong></span>';
|
||||||
|
// echo sprintf($itemString, $di->getDressedItems()[$i]['image'], $di->getDressedItems()[$i]['name'], $di->getDressedItems()[$i]['name']);
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// echo sprintf('<img src="/i/sh/noitem.png" class="item-wrap-normal" title="Пустой слот [%s]" alt="Пустой слот [%s]">', $i, $i);
|
||||||
|
// }
|
||||||
|
// echo sprintf('</div><!-- slot-%s -->', $i);
|
||||||
|
// }
|
||||||
echo '<div class="slot-image">';
|
echo '<div class="slot-image">';
|
||||||
if ($isBattle) {
|
if ($isBattle) {
|
||||||
$sh = '<img src="/i/shadow/%s" alt="%s" class="tip"><span class="tiptext"><b>%s</b>Уровень: %s<br>Сила: %s<br>Ловкость: %s<br>Интуиция: %s<br>Выносливость: %s<br>Интеллект: %s<br>Мудрость: %s</span>';
|
$sh = '<img src="/i/shadow/%s" alt="%s" class="tip"><span class="tiptext"><b>%s</b>Уровень: %s<br>Сила: %s<br>Ловкость: %s<br>Интуиция: %s<br>Выносливость: %s<br>Интеллект: %s<br>Мудрость: %s</span>';
|
||||||
|
Loading…
Reference in New Issue
Block a user