You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
689 B
38 lines
689 B
<?php
|
|
namespace Controleur;
|
|
|
|
Class VisitorControler{
|
|
|
|
public function accueil(){
|
|
global $vues;
|
|
require_once $vues['accueil'];
|
|
}
|
|
|
|
public function quote(array $arg){
|
|
global $vues;
|
|
$id=$arg['idQuote'] ?? 1;
|
|
|
|
//echo "{$id}";
|
|
|
|
require_once $vues['quote'];
|
|
}
|
|
|
|
public function login(){
|
|
|
|
global $vues;
|
|
require_once $vues['login'];
|
|
}
|
|
|
|
public function signin(){
|
|
|
|
global $vues;
|
|
require_once $vues['signin'];
|
|
}
|
|
|
|
public function search(){
|
|
|
|
global $vues;
|
|
require_once $vues['search'];
|
|
}
|
|
}
|