21 lines
638 B
PHP
21 lines
638 B
PHP
<?php
|
|
/** @var array $CONFIG basic configurations (defined via bootstraping) */
|
|
/** @var array $SECRETS passwords and other stuff worth of protection (defined via bootstraping) */
|
|
require_once "bootstrap.php";
|
|
|
|
// legacy lib usage
|
|
// @todo remove unused libraries
|
|
require_once "api.php"; // should be replaced
|
|
|
|
// libraries
|
|
require_once "participoLib/participo.php";
|
|
require_once "participoLib/planer.php";
|
|
require_once "participoLib/apiKey.php";
|
|
require_once "participoLib/user.php";
|
|
// require_once "phpcount/phpcount.php";
|
|
|
|
// Add page hit
|
|
// PHPCount::AddHit("participo");
|
|
|
|
participo::init($CONFIG["cwsvJudo"], $SECRETS["cwsvJudo"]);
|