Esempio n. 1
0
        $recipe_id = $thisrecipe['recipe_id'];
        $recipe_name = $thisrecipe['recipe_name'];
        $recipe_image = $thisrecipe['recipe_image'];
        $recipe_status = $thisrecipe['recipe_status'];
        echo '
			<div class="col-lg-3 col-md-4 col-xs-6 thumb">
                <a class="thumbnail" href="#">
                    <img class="img-responsive quicktickbutton" src="' . $recipe_image . '" alt="" id="id' . $recipe_id . '|cat6|chapter_complete" alt="' . $recipe_name . '" style="height:250px;">
                </a>
            </div>
			';
    }
}
if ($action == "get_inventory") {
    $inventory = new Inventory();
    $allinventory = $inventory->list_inventory($_GET['inventory_type']);
    foreach ($allinventory as $thisinventory) {
        $inventory_id = $thisinventory['inventory_id'];
        $inventory_name = $thisinventory['inventory_name'];
        $inventory_type = $thisinventory['inventory_type'];
        $inventory_image = $thisinventory['inventory_image'];
        echo '
			<div class="col-lg-3 col-md-4 col-xs-6 thumb">
                <a class="thumbnail" href="#">
                    <img class="img-responsive activeitem_book" src="' . $inventory_image . '" alt="" id="inventory_id' . $inventory_id . '" alt="' . $inventory_name . '">
                </a>
            </div>
			';
    }
}
if ($action == "get_stats") {