SAE_2.02/CodeIgniter-3.1.13/application/controllers/MentionsLegales.php

18 lines
424 B
PHP
Raw Normal View History

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class MentionsLegales extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper('url');
}
public function index()
{
$this->load->view('layout/header_not_logged_dark');
$this->load->view('mentions-legals');
$this->load->view('layout/footer_dark');
}
}