]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco.php
Se agregaron a MECON_PDF y MECON_PDF_Marco las medidas para las hojas Oficio (respond...
[mecon/meconlib.git] / lib / MECON / Marco.php
index bfbb2313ebe275c5cad28b0ac022196d4efbff85..6c35e69e3e407b2c856e54855a4d46139648bfca 100644 (file)
@@ -297,7 +297,14 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
      */
     function addSubTitle($subtitulo) // ~X2C
     {
      */
     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
 
     }
     // -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[$clave];
         }
         else {
-            return $this->_configuracion 
+            return $this->_configuracion;
         }
     }
     // -X2C
         }
     }
     // -X2C