]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se acepta en addSubtitle() un MECON_HTML_Link para poner caminito.
authorManuel Nazar Anchorena <manazar@mecon.gov.ar>
Mon, 27 Oct 2003 23:02:41 +0000 (23:02 +0000)
committerManuel Nazar Anchorena <manazar@mecon.gov.ar>
Mon, 27 Oct 2003 23:02:41 +0000 (23:02 +0000)
lib/MECON/Marco.php
www/css/marco.css

index 9797f2b5782238025acd01f5a6cf81b3ad083ba3..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
 
index b0957369c360ef2f600fb017baa967d4c39cbcbb..64ebe330d796d15db4e9fb6d731562521925658d 100644 (file)
@@ -36,6 +36,12 @@ IMG
     vertical-align: middle;
 }
 
     vertical-align: middle;
 }
 
+A.mecon_marco_subtitle {
+    font-family: Arial, Helvetica, sans-serif;
+    font-size: 12pt;
+    color: #336699;
+}
+
 /* ESTOS ESTILOS ESTAN DEPRECATED
 .body_general 
 {
 /* ESTOS ESTILOS ESTAN DEPRECATED
 .body_general 
 {