Смена абсолютных путей на относительные. Унификация кнопок.
This commit is contained in:
parent
2ad7cbec82
commit
101e95d452
@ -23,7 +23,7 @@ class InventoryItem extends Item
|
|||||||
public function printImage()
|
public function printImage()
|
||||||
{
|
{
|
||||||
if (!in_array($this->item_type, [12, 50, 200])) {
|
if (!in_array($this->item_type, [12, 50, 200])) {
|
||||||
echo "<a href=//{$_SERVER['SERVER_NAME']}/main.php?edit=1&dress={$this->item_id} title='Надеть'>";
|
echo "<a href=/main.php?edit=1&dress={$this->item_id} title='Надеть'>";
|
||||||
parent::printImage();
|
parent::printImage();
|
||||||
echo "</a>";
|
echo "</a>";
|
||||||
} else {
|
} else {
|
||||||
@ -36,9 +36,9 @@ class InventoryItem extends Item
|
|||||||
*/
|
*/
|
||||||
public function printControls()
|
public function printControls()
|
||||||
{
|
{
|
||||||
|
//FIXME Сменить заглушку на нормальную функцию!!
|
||||||
echo <<<BTN
|
echo <<<BTN
|
||||||
<p><input type="button" style="background: brown; border: 1px solid grey; color: white; border-radius: 2px;" value="Выбросить"
|
<p><button class="button danger" onclick="location.href='/admin.php'">Выбросить</button>
|
||||||
onclick="location='/admin.php'">
|
|
||||||
BTN;
|
BTN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ abstract class Item
|
|||||||
public function printImage()
|
public function printImage()
|
||||||
{
|
{
|
||||||
echo <<<IMG
|
echo <<<IMG
|
||||||
<img src="//{$_SERVER['SERVER_NAME']}/i/sh/{$this->image}" class="item-wrap-normal">
|
<img src="/i/sh/{$this->image}" class="item-wrap-normal">
|
||||||
IMG;
|
IMG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user