]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Agrego la posibilidad de utilizar mecon_html_icon con cualquier imagen.
authorMartín Marrese <marrese@gmail.com>
Mon, 17 May 2004 16:29:30 +0000 (16:29 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 17 May 2004 16:29:30 +0000 (16:29 +0000)
lib/MECON/HTML/Icon.php

index 26f20f64f9c3918fc9c6adf36be9b5e64a5ecc11..2b5001d3c2b6b83aa68d409dbfb3022b33a11c9c 100644 (file)
@@ -79,9 +79,13 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
     function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs =
             array(), $align = 'right')
     {
-        switch ($nombre) {
-            default:
-                $src = "/MECON/images/general_$nombre";
+        if (is_readable($nombre))
+        {
+            $src = $nombre; 
+        }
+        else             
+        {
+            $src = "/MECON/images/general_$nombre";
         }
         if (is_null($alt)) {
             $alt = '(' . strtoupper($nombre{0}) . ')';