mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-10 05:11:42 +01:00
19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class MentionsLegales extends CI_Controller {
|
|
|
|
public function __construct(){
|
|
parent::__construct();
|
|
$this->load->helper('url');
|
|
$this->load->helper('html');
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('layout/header_not_logged_dark');
|
|
$this->load->view('mentions-legals');
|
|
$this->load->view('layout/footer_dark');
|
|
}
|
|
}
|