From 750e61f44439a36d9582daf149d0dc1b2b9a72c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20CHAZALLET?= Date: Tue, 6 Nov 2012 17:02:18 +0100 Subject: [PATCH] Utilisation de Custom pour GalerieC --- module/Galerie/src/Galerie/Model/GalerieC.php | 39 ++----------------------- 1 file changed, 3 insertions(+), 36 deletions(-) diff --git a/module/Galerie/src/Galerie/Model/GalerieC.php b/module/Galerie/src/Galerie/Model/GalerieC.php index dcf51c7..dceb108 100644 --- a/module/Galerie/src/Galerie/Model/GalerieC.php +++ b/module/Galerie/src/Galerie/Model/GalerieC.php @@ -2,7 +2,9 @@ namespace Galerie\Model; -class GalerieC +use Custom\Model\Entity; + +class GalerieC extends Entity { public $id; public $id_user; @@ -33,39 +35,4 @@ class GalerieC 'id', ); - public function exchangeArray($data, $overwrite=true) - { - foreach($this->columns as $col) { - if (array_key_exists($col, $data)) { - $this->$col = $data[$col]; - } elseif ($overwrite) { - $this->$col = null; - } - } - } - - public function toArray() { - $result = array(); - foreach($this->columns as $col) { - $result[$col] = $this->$col; - } - return $result; - } - - public function toUpdatableArray() { - $result = array(); - foreach($this->updatable_columns as $col) { - $result[$col] = $this->$col; - } - return $result; - } - - public function toPrimaryArray() { - $result = array(); - foreach($this->primary_columns as $col) { - $result[$col] = $this->$col; - } - return $result; - } - } -- 1.7.10.4