-
Notifications
You must be signed in to change notification settings - Fork 1
/
filenames.php
executable file
·66 lines (47 loc) · 1.23 KB
/
filenames.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*
* filenames.php
* Fidelity
*
* Created by Richard Degenne on 30/12/2013. CC by-nc-sa.
*
* Cette page regroupe tous les noms de fichiers utilisés dans le projet pour simplifier les mises à jour.
*/
/*
+ L'adresse mail émettrice
*/
$string["NameSenderMail"] = "[email protected]";
/*
* Frame
*/
$filename["header"] = "Frame/header.php";
$filename["footer"] = "Frame/footer.php";
/*
* Modules
*/
$filename["accueil"] = "Modules/accueil.php";
$filename["aide"] = "Aide/aide.php";
$filename["apropos"] = "Aide/apropos.php";
$filename["caisse"] = "Modules/caisse.php";
$filename["clients"] = "Modules/clients.php";
$filename["mail"] = "Modules/mail.php";
$filename["options"] = "Modules/options.php";
$filename["reductions"] = "Modules/reductions.php";
/*
* Scripts
*/
// Database-related scripts
$filename["db_functions"] = "Database/db_functions.php";
$filename["db_connect"] = "Database/db_connect.php";
// JavaScripts
$filename["JSreductions"] = "Scripts/reductions.js";
$filename["JSclients"] = "Scripts/clients.js";
$filename["JScaisse"] = "Scripts/caisse.js";
$filename["jquery"] = "Scripts/jquery.js";
/*
* Stylesheets
*/
/*
* Images
*/
?>