Rev 43 | Rev 45 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
<?php
// add php_library_v2 to include path. This assumes it is a subdirectory of the directory the config file is in
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . realpath( __DIR__ . '/php_library_v2' ) );
// add php_users to include path. This assumes it is a subdirectory of the directory the config file is in
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . realpath( __DIR__ . '/php_users' ) );
global $configuration;
$configuration = yaml_parse_file( './camp2_config.yaml' );
?>