|
<?php
|
|
|
|
$func = include('auth.php');
|
|
|
|
$func(function () {
|
|
|
|
$a = Service::get('etpa.inscriptions.crud')->read(array('id' => $_GET['id']));
|
|
echo EngineSystem::get('back')->load(sprintf('dossier/%1$s.html', $_GET['page']))->run(
|
|
$a[0]
|
|
)->getData('');
|
|
|
|
});
|
|
|
|
?>
|