X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/7e48327fd634cc173dc5df502f5f175484c2b944..99cee4fba7d5581e7d7f447c6bb54916cc8a7db3:/sistema/local_lib/HTML_Noticia.php?ds=sidebyside diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php index c1b6d2c..1cb5b72 100644 --- a/sistema/local_lib/HTML_Noticia.php +++ b/sistema/local_lib/HTML_Noticia.php @@ -83,11 +83,14 @@ class HTML_Noticia extends HTML_Table { $this->addRow(array("".$tmp->toHTML(). 'volver'), array('class' => 'noticias_ver_mas')); + return parent::toHTML(); } else { - $this->addRow(array($this->noticia->getSeccion()), - array('class' => 'noticias_subtitulo')); + $seccion = $this->noticia->getSeccion(); + if(!is_null($seccion)) + $this->addRow(array($seccion), + array('class' => 'noticias_subtitulo')); $img_str = null; if($this->nuevo) { @@ -99,14 +102,50 @@ class HTML_Noticia extends HTML_Table { $this->addRow(array($tmp->format('(%d/%m/%Y)')), array('class' => 'noticias_fecha_noticia')); $mas = new MECON_HTML_Image('images/noticia_mas.gif'); - $this->addRow(array("".$mas->toHTML().' ver más'), + if(isset($this->vermas)) + { + $this->addRow(array("".$mas->toHTML().' ver más'), array('class' => 'noticias_ver_mas')); + } $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')), array('class' => 'noticias_ver_mas')); + return @ $this->toHTML_no_tabla(); } - return parent::toHTML(); } // -X2C + function toHTML_no_tabla() + { + for ($i = 0 ; $i < $this->_rows ; $i++) { + $strHtml .= $tabs ."\t\n"; + for ($j = 0 ; $j < $this->_cols ; $j++) { + if ($this->_structure[$i][$j] == "SPANNED") { + $strHtml .= $tabs ."\t\t\n"; + continue; + } + $type = ($this->_structure[$i][$j]["type"] == "TH" ? "TH" : "TD"); + $attr = $this->_structure[$i][$j]["attr"]; + $contents = $this->_structure[$i][$j]["contents"]; + $strHtml .= $tabs . "\t\t<$type" . $this->_getAttrString($attr) . ">"; if (is_object($contents)) { + if (is_subclass_of($contents, "html_common")) { + $contents->setTabOffset($this->_tabOffset + 3); + $contents->_nestLevel = $this->_nestLevel + 1; + } + if (method_exists($contents, "toHtml")) { + $contents = $contents->toHtml(); + } elseif (method_exists($contents, "toString")) { + $contents = $contents->toString(); + } + } + if (is_array($contents)) $contents = implode(", ",$contents); + if (isset($this->_autoFill) && $contents == "") $contents = $this->_autoFill; + $strHtml .= $contents; + $strHtml .= "\n"; + } + $strHtml .= $tabs ."\t\n"; + } + return $strHtml; +} + // +X2C Operation 167 /**