projet_php/controllers/error_controller.php

24 lines
No EOL
345 B
PHP

<?php
require("mother_controller.php");
/**
* Le contrôleur des erreurs
* @author Laura
*/
class ErrorCtrl extends MotherCtrl{
/**
* Page erreur 404
*/
public function error_404(){
$this->_display("error_404");
}
/**
* Page erreur 403
*/
public function error_403(){
$this->_display("error_403");
}
}