X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e59d3170b36e5b9ccc19afcb1565faf4dcb40463..5f6890ebb590532b37dcfbcc8809cac5da7fcdc3:/sistema/local_lib/HTML_Noticia.php
diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php
index 5aceb02..1cb5b72 100644
--- a/sistema/local_lib/HTML_Noticia.php
+++ b/sistema/local_lib/HTML_Noticia.php
@@ -83,6 +83,7 @@ class HTML_Noticia extends HTML_Table {
$this->addRow(array("".$tmp->toHTML().
'volver'),
array('class' => 'noticias_ver_mas'));
+ return parent::toHTML();
}
else
{
@@ -108,10 +109,43 @@ class HTML_Noticia extends HTML_Table {
}
$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 .= "$type>\n";
+ }
+ $strHtml .= $tabs ."\t
\n";
+ }
+ return $strHtml;
+}
+
// +X2C Operation 167
/**