29 lines
922 B
PHP
29 lines
922 B
PHP
<?php
|
|
|
|
class InventoryItem extends Item
|
|
{
|
|
public function printInfo()
|
|
{
|
|
parent::printBaseInfo();
|
|
parent::printRequirements();
|
|
parent::printBonuses();
|
|
}
|
|
|
|
public function printImage()
|
|
{
|
|
parent::printImage(); // TODO: Change the autogenerated stub
|
|
}
|
|
|
|
/**
|
|
* Для кнопок управления под картинкой прелмета в зависимости от ситуации.
|
|
*/
|
|
public function printControls()
|
|
{
|
|
echo <<<BTN
|
|
<p><input type="button" style="background: darkgrey; border: 1px solid grey; border-radius: 2px;" value="Надеть"
|
|
onclick="location='/admin.php'">
|
|
<input type="button" style="background: brown; border: 1px solid grey; color: white border-radius: 2px;" value="Выбросить"
|
|
onclick="location='/admin.php'">
|
|
BTN;
|
|
}
|
|
} |