Esempio n. 1
0
    if ($isAdmin) {
        echo "<input type='hidden' name='itemId' value='<?={$good->id}?>' />";
        echo "<input name='btnDel{$good->id}' class='delItem' type='image' src='/images/admin_delete.png' />";
    }
    echo "<a href='/index.php/items/item/" . (string) $good->id . "'>";
    if (@fopen($good->getImageUrl(), 'r')) {
        echo "<img src='" . $good->getImageUrl() . "' width='216' height='270' />";
    } else {
        echo "<img src='/images/no_image_small.png' width='216' height='270' />";
    }
    echo "<p>" . $good->name . "</p></a>";
    $s = 'btnDel' . $good->id . '_x';
    if (isset($_POST['btnDel' . $good->id . '_x'])) {
        unset($_POST['btnDel' . $good->id . '_x']);
        $productStuff = new ProductsStuff();
        $productStuff->removeProduct($good);
        header("Location: /index.php/items/itemsByCat/{$catId}");
    }
    ?>
                <div id='price-in-catalog'>
                <?php 
    /* if ($isAdmin)
       echo "<a href='/index.php/items/addedititem/$good->id'><img src='/images/admin_edit.png' align='right'/></a>";*/
    ?>
                    <p><?php 
    echo $good->price;
    ?>
 P.</p>
                </div>
                </form>
            </div> <!-- .catalogItem -->