24 lines
754 B
PHP
24 lines
754 B
PHP
<?php
|
|
/// @file main for the achievementsystem
|
|
///
|
|
/// This file includes all other files needed by the achievementsystem
|
|
|
|
require_once('machs-config.php');
|
|
|
|
require_once("./lib/db.php");
|
|
require_once("./lib/achievementsLib.php");
|
|
require_once("./lib/api.php");
|
|
require_once("./lib/record.php");
|
|
require_once("./lib/machs/achievementGroup.php");
|
|
|
|
require_once("./auth.php");
|
|
|
|
// externel libraries, that can't be included by relative path
|
|
/// @todo Do it better: how can we include external libraries without a
|
|
/// config variable
|
|
require_once($config['basePath']."/config/cwsvJudo.config.php");
|
|
require_once($config['basePath']."/config/phpcount.config.php");
|
|
require_once($config['basePath']."/ressourcen/phpLib/phpcount/phpcount.php");
|
|
|
|
?>
|