You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
401 B
18 lines
401 B
<?php
|
|
//chargement config
|
|
require_once("config.php");
|
|
|
|
require_once("connection.php");
|
|
require_once("ControllerAdmin.php");
|
|
require_once("gatewayAdmins.php");
|
|
require_once("gatewaySources.php");
|
|
require_once("gatewayNews.php");
|
|
require_once("gatewaySources.php");
|
|
|
|
|
|
$controller = new ControllerAdmin();
|
|
$c = new GatewaySources();
|
|
|
|
echo($c->getSource());
|
|
?>
|