Subversion Repositories computer_asset_manager_v2

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 rodolico 1
<?php
2
 
36 rodolico 3
   // add php_library_v2 to include path. This assumes it is a subdirectory of the directory the config file is in
4
   ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . realpath( __DIR__ . '/php_library_v2' ) ); 
44 rodolico 5
   // add php_users to include path. This assumes it is a subdirectory of the directory the config file is in
6
   ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . realpath( __DIR__ . '/php_users' ) ); 
1 rodolico 7
 
43 rodolico 8
   global $configuration;
9
   $configuration = yaml_parse_file( './camp2_config.yaml' );
1 rodolico 10
 
11
?>