2019-08-16 13:35:54 +02:00
< ? php
$currentpage = $_SERVER [ 'PHP_SELF' ];
2019-08-23 11:36:13 +02:00
$indexActive = '' ;
$functionlistActive = '' ;
2019-08-16 13:35:54 +02:00
switch ( $currentpage ) {
case '/index.php' :
$title = 'FunctionProject' ;
$description = 'FunctionProject est un projet créé par Divlo qui a pour but de rassembler plein de mini-programme (fonctions JavaScript) permettant de faire plusieurs choses comme savoir la météo, générer un nombre aléatoire, etc.' ;
2019-08-22 22:16:29 +02:00
$image = 'https://function.divlo.fr/img/FunctionProject_icon.png' ;
2019-08-23 11:36:13 +02:00
$indexActive = 'active' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-list.php' :
$title = 'Liste des fonctions' ;
2019-08-16 21:53:57 +02:00
$description = 'La liste des mini-programmes (fonctions JavaScript).' ;
2019-08-22 22:16:29 +02:00
$image = 'https://function.divlo.fr/img/FunctionProject_icon.png' ;
2019-08-23 11:36:13 +02:00
$functionlistActive = 'active' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-views/calculateAge.php' :
$title = 'Quelle âge avez-vous ?' ;
$description = " Calcule l'âge de quelqu'un selon la date de naissance. " ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/function-image/calculateAge.png' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-views/convertDistance.php' :
$title = 'Conversion de Distance' ;
$description = 'Convertit la longueur (distance) avec les unités allant de picomètre au Téramètre.' ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/function-image/convertDistance.png' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-views/convertTemperature.php' :
$title = 'Conversion de Température' ;
$description = " Convertit des Degré Celsius en Degré Fahrenheit et l'inverse aussi. " ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/function-image/convertTemperature.png' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-views/randomNumber.php' :
$title = 'Nombre Aléatoire' ;
$description = 'Génère un nombre aléatoire entre un minimum inclus et un maximum inclus.' ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/function-image/randomNumber.png' ;
2019-08-16 13:35:54 +02:00
break ;
case '/views/function-views/weatherRequest.php' :
$title = 'Météo' ;
$description = " Affiche la météo et l'heure local selon la ville. " ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/function-image/weatherRequest.png' ;
2019-08-16 13:35:54 +02:00
break ;
default :
2019-08-16 13:45:04 +02:00
$title = 'Erreur 404' ;
$description = " Cette page n'existe pas! " ;
2019-08-16 21:53:57 +02:00
$image = 'https://function.divlo.fr/img/error404.png' ;
2019-08-16 13:35:54 +02:00
}
?>