MVC_Recettes/Controllers/DefaultController.php
2023-01-20 09:20:57 +01:00

31 lines
898 B
PHP

<?php
final class DefaultController
{
public function defaultAction(Array $A_urlParams = null, Array $A_postParams = null)
{
$array_recipes = array(
array(
"RECIPE_LINK" => "/recipe/view/1",
"NAME" => "Pâte à crêpe",
"IMG_LINK" => "/static/img/recipes/1.jpg",
"NOTE" => "4.5"
),
array(
"RECIPE_LINK" => "/recipe/view/1",
"NAME" => "Pâte à crêpe",
"IMG_LINK" => "/static/img/recipes/1.jpg",
"NOTE" => "4.5"
),
array(
"RECIPE_LINK" => "/recipe/view/1",
"NAME" => "Pâte à crêpe",
"IMG_LINK" => "/static/img/recipes/1.jpg",
"NOTE" => "4.5"
),
);
View::show("home/view", $array_recipes);
}
}