X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/834bee1cf2c5bd122b3e941c70b5c2f03ee80a27..e0bb2a45e21778743b6985197fe24ee0d2374d60:/lib/MLIB/HTML/Tabla.php diff --git a/lib/MLIB/HTML/Tabla.php b/lib/MLIB/HTML/Tabla.php index f5cdad0..797964b 100644 --- a/lib/MLIB/HTML/Tabla.php +++ b/lib/MLIB/HTML/Tabla.php @@ -1,16 +1,15 @@ _conf = include(dirname(__FILE__) . '/Tabla/estilo_' . $estilo . '.php'); // Seteo los atributos para la tabla @@ -423,17 +422,17 @@ class MECON_HTML_Tabla extends HTML_Table { * $tabla->addLink('nuevos', 'nuevos.php'); * } * $tabla->addLink('volver', - * new MECON_HTML_Link('atras.php')); + * new MLIB_HTML_Link('atras.php')); * $tabla->addLink('anterior', - * new MECON_HTML_Link('previo.php', 'Persona Anterior')); + * new MLIB_HTML_Link('previo.php', 'Persona Anterior')); * $tabla->addLink('siguiente', - * new MECON_HTML_Link('previo.php', 'Siguiente persona', + * new MLIB_HTML_Link('previo.php', 'Siguiente persona', * array('pers' => 'prox'))); * @endcode * * @param string $id Identificador del link predefinido. Puede ser 'volver', * 'nuevo', 'nuevos', 'buscar', 'anterior' y 'siguiente'. - * @param MECON_HTML_Link $link Link a usar. Si no tiene contenidos, se pone + * @param MLIB_HTML_Link $link Link a usar. Si no tiene contenidos, se pone * uno por defecto. Si es null, se pone como * link la página actual. * @@ -443,11 +442,11 @@ class MECON_HTML_Tabla extends HTML_Table { $link = @$_SERVER['PHP_SELF']; } if (is_string($link)) { - $link = new MECON_HTML_Link($link, ''); + $link = new MLIB_HTML_Link($link, ''); } switch ($id) { case 'nuevo': - $img = new MECON_HTML_Image('/MECON/images/general_nuevo', ' >>'); + $img = new MLIB_HTML_Image('/MLIB/images/general_nuevo', ' >>'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Nuevo'); @@ -456,7 +455,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'derecha'); break; case 'nuevos': - $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', ' >>'); + $img = new MLIB_HTML_Image('/MLIB/images/general_muchos_nuevo', ' >>'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Nuevos'); @@ -465,7 +464,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'derecha'); break; case 'buscar': - $img = new MECON_HTML_Image('/MECON/images/general_lupa', ' ?>'); + $img = new MLIB_HTML_Image('/MLIB/images/general_lupa', ' ?>'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Buscar'); @@ -474,7 +473,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'derecha'); break; case 'siguiente': - $img = new MECON_HTML_Image('/MECON/images/general_posterior', ' >>'); + $img = new MLIB_HTML_Image('/MLIB/images/general_posterior', ' >>'); // Si no tiene titulo, le pone titulo por defecto. if (!$link->getContents()) { $link->setContents('Siguiente'); @@ -483,7 +482,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updatePie($link, 'derecha'); break; case 'volver': - $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<< '); + $img = new MLIB_HTML_Image('/MLIB/images/general_anterior', '<< '); // Si no tiene titulo, le pone titulo por defecto. $cont = $link->getContents() ? $link->getContents() : 'Volver'; $link->setContents($img); @@ -491,7 +490,7 @@ class MECON_HTML_Tabla extends HTML_Table { $this->updateCabecera($link, 'izquierda'); break; case 'anterior': - $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<< '); + $img = new MLIB_HTML_Image('/MLIB/images/general_anterior', '<< '); // Si no tiene titulo, le pone titulo por defecto. $cont = $link->getContents() ? $link->getContents() : 'Anterior'; $link->setContents($img);