This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
accm-website/pages/InitiationPage.inc.php
2010-08-14 22:32:09 +02:00

57 lines
1.5 KiB
PHP

<?php
include_once './pages/PageInterface.inc.php';
/**
* This class represents the static page containing the Google map
* for the different places.
*
* @author Thomas Schwery <thomas.schwery@epfl.ch>
*/
class InitiationPage implements PageInterface {
private $content;
public function __construct() {
$this->content = <<<SITU
<h2>Cours Découverte</h2>
<p class="index_text">
Fr. 150.-- pour 8 cours de 1h30, matériel compris. Selon la saison, en salle ou
en terrain FITA.
</p>
<h2>Cours privé</h2>
<p class="index_text">
Fr. 50.-- par heure + Fr 15.-- de location de matériel.
</p>
<h2>Cours en groupe</h2>
<p class="index_text">
Fr. 55.-- par heure pour un groupe de maximum 4 à 5 personnes, plus Fr. 15.--
par personne de location de matériel.
</p>
<h2>Cours en groupe de 10 personnes et plus</h2>
<p class="index_text">
Fr. 15.-- par heure par personne, location de matériel compris.
</p>
<h2>Utilisation du terrain sans moniteur</h2>
<p class="index_text">
L'utilisation du terrain FITA sans la présence d'un moniteur est réservée
exclusivement aux tireurs licenciés aurpès de l'ASTA, tarifs: <br>
Fr. 20.-- par jour ou Fr. 50.-- par semaine.
SITU;
}
public function getContent() {
return $this->content;
}
public function getTitle() {
//return Localization::situationMap;
return "Initiation";
}
public static function getStaticTitle() {
//return Localization::situationMap;
return "Initiation";
}
}
?>