Add modules/core directory, first files
This commit is contained in:
parent
793a61475e
commit
e17f02814d
6 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
$config = Array();
|
$config = Array();
|
||||||
|
|
||||||
$config["modules_enabled"] = "";
|
$config["modules_enabled"] = "";
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
1
server/core/Readme.txt
Normal file
1
server/core/Readme.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
require "vendor/autoload.php";
|
require "vendor/autoload.php";
|
||||||
include_once("config.inc.php");
|
include_once("config.inc.php");
|
||||||
include_once("init.php");
|
include_once("init.php");
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
include_once("config.inc.php");
|
include_once("config.inc.php");
|
||||||
require "vendor/autoload.php";
|
require "vendor/autoload.php";
|
||||||
|
|
||||||
//traitement requete, recuperation data
|
//traitement requete, recuperation data
|
||||||
if(isset($_POST["key"])){
|
if(isset($_POST["key"])){
|
||||||
//recuperation des donnes sauvegardes
|
//recuperation des donnes sauvegardes
|
||||||
|
|
1
server/modules/Readme.txt
Normal file
1
server/modules/Readme.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
ini_set('display_errors', 1);
|
ini_set('display_errors', 1);
|
||||||
date_default_timezone_set("Europe/Paris");
|
date_default_timezone_set("Europe/Paris");
|
||||||
require 'vendor/autoload.php';
|
require 'vendor/autoload.php';
|
||||||
|
|
||||||
$options = Array();
|
$options = Array();
|
||||||
$options["user"] = Array("name"=>"admin", "password"=>"ae5or6cn", "domain"=>["id"=>"Default"]);
|
$options["user"] = Array("name"=>"admin", "password"=>"ae5or6cn", "domain"=>["id"=>"Default"]);
|
||||||
$options["scope"] = Array("project"=>Array("name"=>"admin", "domain"=>["id"=>"Default"]));
|
$options["scope"] = Array("project"=>Array("name"=>"admin", "domain"=>["id"=>"Default"]));
|
||||||
|
|
Loading…
Add table
Reference in a new issue