progetto fatto precedentemente adattato al framework creato con il corso
filippo.bertilotti
2024-06-10 3e685fa675e58af50c45a2c1f8a3f35ff5f16ddf
commit | author | age
15e03a 1 <?php
F 2 namespace App\Controllers;
3 use Framework\Controller;
effd6a 4 class Fiat extends Controller {
20a1fc 5     
F 6     public function __construct()
7     {
8         
9     }
15e03a 10     public function index() {
effd6a 11         return $this->view("Fiat/index.mvc.php", [
F 12         ]);
15e03a 13     }
20a1fc 14
F 15     public function panda() {
16         return $this->view("Fiat/panda.mvc.php", [
17         ]);
18     }
19
20     public function fiat500() {
21         return $this->view("Fiat/fiat500.mvc.php", [
22         ]);
23     }
24
25     public function tipo() {
26         return $this->view("Fiat/tipo.mvc.php", [
27         ]);
28     }
29
30     public function contact() {
31         return $this->view("Fiat/contact.mvc.php", [
32         ]);
33     }
34
15e03a 35 }