make class greater

This commit is contained in:
Igor Barkov [iwork] 2019-01-14 18:42:45 +02:00
parent 3828806645
commit 1d881d47ad
1 changed files with 3 additions and 2 deletions

View File

@ -22,10 +22,11 @@ class ShopItem extends Item
*/
public function printControls()
{
$btnPrice = 'Купить за ' . intval($this->cost) . ' кр.';
$btnPrice = "Купить за {intval($this->cost)} кр.";
$btnLink = "/shop.php?buy={$this->id}&rnd=".mt_rand();
echo <<<BTN
<p><input type="button" style="background: darkgrey; border: 1px solid grey; border-radius: 2px;" value="{$btnPrice}"
onclick="location='/admin.php'">
onclick="location='{$btnLink}'">
BTN;
if ($this->count > 0) echo "<br><small>(Осталось: {$this->count} штук)</small>";
}