X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/d942f04e0f9c142a0a75da12787b06adf310f250..ec67d7b9c8a7dd7f3fb885ba2cd2013d96e3afa3:/lib/MECON/Marco.php diff --git a/lib/MECON/Marco.php b/lib/MECON/Marco.php index bfbb231..6c35e69 100644 --- a/lib/MECON/Marco.php +++ b/lib/MECON/Marco.php @@ -297,7 +297,14 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS */ function addSubTitle($subtitulo) // ~X2C { - $this->_configuracion['subtitulo'].= ' - '.$subtitulo; + if (is_a($subtitulo, 'mecon_html_link')) { + $subtitulo->updateAttributes( + array('class' => 'mecon_marco_subtitle')); + } + if (method_exists($subtitulo, 'tohtml')) { + $subtitulo = $subtitulo->toHtml(); + } + $this->_configuracion['subtitulo'] .= ' - ' . $subtitulo; } // -X2C @@ -363,7 +370,7 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS return @$this->_configuracion[$clave]; } else { - return $this->_configuracion + return $this->_configuracion; } } // -X2C