From 0656a4877c67c36ae2f551e735d51a9cebc2b426 Mon Sep 17 00:00:00 2001 From: Matthieu Guffroy <mattgu74@gmail.com> Date: Wed, 18 Jun 2014 21:47:19 +0200 Subject: [PATCH] fix errors --- class/field.php | 4 ++++ class/listview.php | 8 ++++++++ view/list.php | 4 ++-- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/class/field.php b/class/field.php index 6d5d50f..69c5c79 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 9670927..7ac38be 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 305cb28..a7fc18a 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> -- GitLab