Blame view

src/CALLEXT/ddserver_ini.php 482 Bytes
bd9dfce2   Benjamin Renard   Add CALLEXT and D...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?
/**
*  @file ddserver_ini.php
*  @brief All DD Server External Data initialisations
*/

  define("DDBASEBIN", getenv("DDBASEBIN"));
  define("DDBASE", getenv("DDBASE"));
  define("DDLIB", getenv("DDLIB"));
  $old_include_path = set_include_path("./:".DDLIB); 
 /*
  *     Open STDERR stream
 */
   $STDERR = fopen("php://stderr","w");


  if (!function_exists('__autoload')) {
     function __autoload($class_name) {
            require_once $class_name . '.php';
     }
  }

?>