diff --git a/lib/Personne.php b/lib/Personne.php index 2497586..02c73ec 100644 --- a/lib/Personne.php +++ b/lib/Personne.php @@ -32,6 +32,10 @@ class Personne $this->versements = array(); } + /** + * return copie d'une personne + * @param $p + */ public static function copier($p) { return new Personne( @@ -44,8 +48,12 @@ class Personne } - /* - * ajouter un versement pour une activité et un tarif donnés + /** + * ajouter un versement + * @param $idActivite + * @param $idTarif + * @param $montant + * @param $tauxReduction */ public function ajouterVersement( $idActivite, diff --git a/templates/index.tpl b/templates/index.tpl index c7df99a..92a8be0 100644 --- a/templates/index.tpl +++ b/templates/index.tpl @@ -2,7 +2,7 @@ {include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}