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

23 lines
560 B
PHP
Raw Permalink 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');
$this->load->helper('html');
}
public function index()
{
2024-05-30 13:49:35 +02:00
$data['title']="Mentions Légales";
$data['css']="assets/css/mention-legals";
$this->load->view('layout/header_dark',$data);
$this->load->view('mentions-legals');
$this->load->view('layout/footer_dark');
}
}