Initial commit

This commit is contained in:
2020-11-02 15:46:52 +01:00
commit 17f974127c
13788 changed files with 1921656 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
include_once(realpath(dirname(__FILE__)) . "/../../../fonctions/authplugins.php");
autorisation("contact");
if(isset($_REQUEST["vue"])) $vue = $_REQUEST["vue"];
else $vue = "";
switch($vue){
case "view":
include_once(realpath(dirname(__FILE__)) . "/view.php");
break;
default:
include_once(realpath(dirname(__FILE__)) . "/listing.php");
break;
}