From 6295690d016e83a22cd0f402e8ac71c3d35ca4a1 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 28 Jul 2003 21:33:23 +0000 Subject: [PATCH] =?utf8?q?Se=20agrega=20un=20link=20para=20agregar=20un=20?= =?utf8?q?item=20nuevo=20cuando=20se=20est=C3=A1=20modificando=20o=20borra?= =?utf8?q?ndo=20otro.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- TODO | 2 -- sistema/www/index.php | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index dfa9096..93b6bbc 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,5 @@ $Id$ -- Agregar links para agregar un elemento nuevo sin tener que tocar en el - ícono de la sección que es poco intuitivo. - Ver que se hace con sistemas borrados de SAMURAI con baja lógica. - Resolver tema de JOIN con SAMURAI. diff --git a/sistema/www/index.php b/sistema/www/index.php index 0f0184f..90cdcd7 100644 --- a/sistema/www/index.php +++ b/sistema/www/index.php @@ -217,8 +217,21 @@ if ($tipo) { } // }}} - // Agrego el menu y formulario a la página. {{{ + // Agrego el menu, link para nuevo y formulario a la página. {{{ $marco->addMenuVertical($arbol); + if ($accion & ~AI_ALTA) { + require_once 'HTML/Image.php'; + require_once 'HTML/Link.php'; + $img = new HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo', + array('border' => 0, 'align' => 'middle',)); + $link = new HTML_Link($tipo); + $marco->addBody('
'); + $link->addContents($img); + $link_text = ' Agregar un nuevo ' . $nombre; + $link->addContents($link_text); + $marco->addBody($link); + $marco->addBody('
'); + } $marco->addBody($form); // }}} -- 2.43.0