projet_php/controllers/page_controller.php

38 lines
No EOL
554 B
PHP

<?php
require("mother_controller.php");
/**
* Le controller de la page d'aide utilisateur
* @author Laura & Besnik
*/
class PageCtrl extends MotherCtrl{
/**
* Page aide utilisateur
*/
public function help(){
$this->_display("help");
}
/**
* Page mentions légales
*/
public function mentions(){
// Afficher
$this->_display("mentions");
}
/**
* Page à propos
*/
public function about(){
// Afficher
$this->_display("about");
}
}