14 lines
478 B
PHP
Executable File
14 lines
478 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
|
|
if ($bdd=='demo' || $_SESSION['ENVIRONNEMENT']=='local' ) {
|
|
if ($niveau==1) include ($includePathAdmin. '/psk/psk.test.php');
|
|
if ($niveau==2) include ($includePathAdmin. '/psk/psk.test.php');
|
|
include ('stripeFormulesIds.test.php');
|
|
}
|
|
else {
|
|
if ($niveau==1)include ($includePathAdmin. '/psk/psk.prod.php');
|
|
if ($niveau==2)include ($includePathAdmin. '/psk/psk.prod.php');
|
|
include ('stripeFormulesIds.prod.php');
|
|
}
|
|
?>
|