2017-09-12 16:32:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace router\controller;
|
|
|
|
use \service\Config;
|
|
|
|
|
|
|
|
|
|
|
|
class page{
|
|
|
|
|
|
|
|
|
|
|
|
private $pagename;
|
|
|
|
|
|
|
|
/* PRE-CALL
|
|
|
|
*
|
|
|
|
* @url<String> Calling URI
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct($url){
|
|
|
|
$this->pagename = $url['page'];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* CALL
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function home(){
|
|
|
|
|
|
|
|
|
|
|
|
/* [1] Fetch configuration
|
|
|
|
=========================================================*/
|
|
|
|
/* (1) Get config */
|
|
|
|
try{
|
2017-09-12 19:35:45 +00:00
|
|
|
$config = Config::loadCached();
|
2017-09-12 16:32:01 +00:00
|
|
|
|
|
|
|
/* (2) Error management */
|
|
|
|
}catch(\Exception $e){
|
|
|
|
die("An error occured. Please contact the developers.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (3) Get the diplome list */
|
|
|
|
$diplomes = $config->getDiplomes();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* [2] Display the links
|
|
|
|
=========================================================*/
|
2017-09-12 19:35:45 +00:00
|
|
|
echo "<table><thead><tr><td>Diplome</td><td>Link</td></tr></thead><tbody>";
|
|
|
|
|
2017-09-12 16:32:01 +00:00
|
|
|
foreach($diplomes as $id=>$name){
|
2017-09-12 16:38:46 +00:00
|
|
|
|
|
|
|
|
2017-09-12 19:35:45 +00:00
|
|
|
echo "<tr><td>$name</td>";
|
2017-09-12 17:19:03 +00:00
|
|
|
|
2017-09-12 17:20:34 +00:00
|
|
|
$link = $_SERVER['HTTP_HOST']."/ics/$id.ics";
|
2017-09-12 17:19:36 +00:00
|
|
|
if( file_exists(__ROOT__."/tmp/$id.ics") )
|
2017-09-12 19:35:45 +00:00
|
|
|
echo "<td><a href='/ics/$id.ics'>https://$link</a></td>";
|
2017-09-12 16:32:01 +00:00
|
|
|
|
2017-09-12 19:35:45 +00:00
|
|
|
echo "</tr>";
|
2017-09-12 16:32:01 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 19:35:45 +00:00
|
|
|
echo "</tbody></table>";
|
|
|
|
|
2017-09-12 16:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* POST-CALL
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __destruct(){
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|