forked from thelia/admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.php
More file actions
36 lines (30 loc) · 793 Bytes
/
module.php
File metadata and controls
36 lines (30 loc) · 793 Bytes
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
<?php
require_once("auth.php");
if (!est_autorise("acces_modules"))
exit;
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<?php require_once("title.php"); ?>
</head>
<body>
<?php
ActionsAdminModules::instance()->inclure_module_admin("module_top");
$menu = "plugins";
$breadcrumbs = Breadcrumb::getInstance()->getSimpleList(trad('Gestion_plugins', 'admin'));
require_once("entete.php");
ActionsAdminModules::instance()->inclure_module_admin("module");
try {
$path = ActionsAdminModules::instance()->trouver_fichier_admin($nom);
include($path);
} catch (Exception $e) {
Tlog::error($e->getMessage());
}
ActionsAdminModules::instance()->inclure_module_admin("module_bottom");
require_once("pied.php");
?>
</div>
</div>
</body>
</html>