blob: 55be411d8b46404fd7c5d1162311144805f3b77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
// ############################################################################
// # #
// # Description: Système de notification #
// # #
// ############################################################################
// Import du texte en fonction de la langue sélecitonnée
require_once(dirname( __FILE__ )."/".$_SESSION["lang"]."/text.php");
// Partie html de la notification
echo('<!-- Notification -->
<aside id="notif">
<button type="button" id="notifClose">✖</button>
<a id="notifRedirect">
<span>🔔</span>
<h3>'.$text[basename(__FILE__, ".php")]["header"].'</h3>
<p>'.$text[basename(__FILE__, ".php")]["info"].'</p>
</a>
</aside>');
?>
|