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.
myDrive/controleur/FrontControler.php

20 lines
345 B

<?php
require_once('controleur/gest.php');
class FrontControler {
private $actions = array(
"Gest" => ["wantToConnect"],
);
function start() {
session_start();
$action = $_REQUEST['action'];
if(in_array($action, $this->action['Gest'])){
$controleur = new GestControler();
}else{
$controleur = new GestControler();
}
}
}