diff --git a/class/field.php b/class/field.php index 6d5d50f843975dfae7af14c3b14fa2f93cf81281..69c5c792a83566b13e7e927a25a1f43ad96fe560 100644 --- a/class/field.php +++ b/class/field.php @@ -43,4 +43,8 @@ class Field { return $this->value; } + public function getLabel() { + return $name; + } + } diff --git a/class/listview.php b/class/listview.php index 96709279a4473ab4e9d2e3e1ed1987156cf98e89..7ac38be3ec91310735226c39954f2fd0dbd1953b 100644 --- a/class/listview.php +++ b/class/listview.php @@ -20,4 +20,12 @@ class ListView return $this->objArray; } + public function getLabels() { + if(count($this->objArray) > 0 ){ + return $this->objArray[0]; + } else { + throw new Exception("Liste vide"); + } + } + } \ No newline at end of file diff --git a/view/list.php b/view/list.php index 305cb2854259a9cd71650e827043de2a83fb8a7e..a7fc18a354835677687e01b58a6b6ecfeb02e8fe 100644 --- a/view/list.php +++ b/view/list.php @@ -5,8 +5,8 @@ </div> <table class="table"> <thead> - <?php foreach($list->getLabels() as $key): ?> - <th><?php echo ucfirst($key); ?></th> + <?php foreach($list->getLabels() as $field): ?> + <th><?php echo $field->getLabel(); ?></th> <?php endforeach; ?> <th></th> </thead>