From 91206e21cb4392e955ce0be4717e4584bfdd8a39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Fri, 15 Oct 2010 17:03:39 +0200 Subject: [PATCH] =?UTF-8?q?w=5Ffield=20d=C3=A9tecte=20le=20type=20du=20cha?= =?UTF-8?q?mp=20et=20appelle=20le=20w=5F=3F=3F=3F=20correspondant.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cms2/code/document.php5 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cms2/code/document.php5 b/cms2/code/document.php5 index 30bef10..cb9dd47 100644 --- a/cms2/code/document.php5 +++ b/cms2/code/document.php5 @@ -209,9 +209,7 @@ ElementDocument::add_widget("description", create_function('$d, $cell', ' ElementDocument::add_widget("field", create_function('$d, $cell', ' - $f = $d->span("field"); - $f->text("[(" . $cell->type() .")". $cell->propriete() . " = " . toString($cell) . "]"); - return $f; + return call_user_func(array($d, "w_" . $cell->type()), $cell); ')); @@ -238,7 +236,7 @@ ElementDocument::add_widget("text_rich", create_function('$d, $cell', ' ElementDocument::add_widget("bool", create_function('$d, $cell', ' // checkbox - return $d->text("Not Implemented Yet : w_bool($cell)"); + return $d->text("w_bool(" . toString($cell) . ")"); '));