+ // +X2C Operation 192
+ /**
+ * @param string $link
+ *
+ * @return void
+ * @access public
+ */
+ function setLink($link) // ~X2C
+ {
+ $this->link = $link;
+ }
+ // -X2C
+
+ // +X2C Operation 193
+ /**
+ * @param string $link
+ *
+ * @return void
+ * @access public
+ */
+ function setVerMas($link) // ~X2C
+ {
+ $this->vermas = $link;
+ }
+ // -X2C
+
+ // +X2C Operation 194
+ /**
+ * @param string $link
+ *
+ * @return void
+ * @access public
+ */
+ function setVolver($link) // ~X2C
+ {
+ $this->volver = $link;
+ }
+ // -X2C
+
+ // +X2C Operation 195
+ /**
+ * @return void
+ * @access public
+ */
+ function getCSS() // ~X2C
+ {
+ return "css/noticias.css";
+ }
+ // -X2C
+
+ // +X2C Operation 198
+ /**
+ * @return void
+ * @access public
+ */
+ function toHTML_no_tabla() // ~X2C
+ {
+ for ($i = 0 ; $i < $this->_rows ; $i++) {
+ $strHtml .= $tabs ."\t<TR>\n";
+ for ($j = 0 ; $j < $this->_cols ; $j++) {
+ if ($this->_structure[$i][$j] == "SPANNED") {
+ $strHtml .= $tabs ."\t\t<!-- span -->\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</TR>\n";
+ }
+ return $strHtml;
+ }
+ // -X2C
+