This commit is contained in:
parent
c9ffcca880
commit
4594e988d4
11
index.php
11
index.php
|
@ -1,14 +1,5 @@
|
|||
<?php define('__ROOT__', dirname(__FILE__) );
|
||||
|
||||
/* Fonction pour parser correctement les liens
|
||||
* La fonction build path retourne le chemin absolue su fichier avec le bon séparateur ('/' sur linux et '\' sur windows)
|
||||
* ses arguments sont l'ensemble des dossiers conteneurs à partir de __ROOT__ jusqu'à la cible
|
||||
*/
|
||||
function buildPath(){
|
||||
return __ROOT__.DIRECTORY_SEPARATOR.join(DIRECTORY_SEPARATOR, func_get_args());
|
||||
}
|
||||
|
||||
require_once buildPath('manager', 'security.php');
|
||||
require_once __ROOT__.'/manager/security.php';
|
||||
|
||||
/* VARIABLES DES NOTIFICATIONS */
|
||||
$notifNotifNum = 5;
|
||||
|
|
|
@ -530,8 +530,8 @@ if(permission('admin')){
|
|||
echo "<section name='importexcel' title='Importation/Export' class='basic'>";
|
||||
|
||||
//inclusion des classes de PHPExcel
|
||||
include buildPath("src", "phpexcel", "Classes", "PHPExcel.php");
|
||||
include buildPath("src", "phpexcel", "Classes", "PHPExcel", "Writer", "Excel2007.php");
|
||||
include __ROOT__.DIRECTORY_SEPARATOR.join(DIRECTORY_SEPARATOR, array("src", "phpexcel", "Classes", "PHPExcel.php"));
|
||||
include __ROOT__.DIRECTORY_SEPARATOR.join(DIRECTORY_SEPARATOR, array("src", "phpexcel", "Classes", "PHPExcel", "Writer", "Excel2007.php"));
|
||||
|
||||
//On crée une instance du fichier xls, ainsi que de la feuille active
|
||||
$workbook = new PHPExcel();
|
||||
|
|
Loading…
Reference in New Issue