]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Primer intento de arreglar los bullets.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 25 Jul 2003 17:50:04 +0000 (17:50 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 25 Jul 2003 17:50:04 +0000 (17:50 +0000)
lib/MECON/HTML/Arbol.php
www/images/arbol_bullet_2.gif
www/images/arbol_bullet_3.gif
www/images/blanco.gif [new file with mode: 0644]

index 899fb76f7e6020fedaf8b8b64f490a0eacf6b6ba..b7e0dc3595758c76b4f1b55d37c8053c17bc72d1 100644 (file)
@@ -60,22 +60,34 @@ class HTML_Arbol extends HTML_Table
 
     function expandir($dat, $n, &$tabla)
     {
-        $imagen = '';
         $bullets = array(
             '',
             '/MECON/images/arbol_bullet_1.gif',
             '/MECON/images/arbol_bullet_2.gif',
             '/MECON/images/arbol_bullet_3.gif'
         );
-        $tabulados = 7;
+        $alts = array(
+            '',
+            '*',
+            '-',
+            'ยท'
+        );
         $classes = array('menu', 'menu1', 'menu1', 'menu2');
-        
-        $atr = array('border' => '0',
-                     'width'  => $n * $tabulados,
-                 'height' => '10');
-        $imagen =& new HTML_Image(@$bullets[$n] ? $bullets[$n] : '', 'bullet', $atr);
+        $tabulados = 7;
+        $atr = array(
+            'border' => '0',
+            'width'  => $n * $tabulados,
+            'height' => '10'
+        );
+        $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat('&nbsp;&nbsp;', $n), $atr);
+        $margen = $margen->toHtml();
+        $imagen = '';
+        if (@$bullets[$n]) {
+            $imagen = new HTML_Image($bullets[$n], @$alts[$n], $atr);
+            $imagen = $imagen->toHtml();
+        }
         foreach ($dat as $e) {
-            $titulo = $imagen->toHTML().$e['titulo'];
+            $titulo = $margen.$imagen.$e['titulo'];
             if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo';
             else $class = $classes[$n];
             if(!is_null($e['link'])) {
index f25b8a40d459d20aa3b70821f75e0f227e361f22..5159dd94584767b42dc493ae9396c24268c01e21 100644 (file)
Binary files a/www/images/arbol_bullet_2.gif and b/www/images/arbol_bullet_2.gif differ
index a590f5b7c07e10f0690cd766a92e4957fa26a660..1e9fd61050c45df4a02cc7bf605e8a691d90d3b2 100644 (file)
Binary files a/www/images/arbol_bullet_3.gif and b/www/images/arbol_bullet_3.gif differ
diff --git a/www/images/blanco.gif b/www/images/blanco.gif
new file mode 100644 (file)
index 0000000..fc25609
Binary files /dev/null and b/www/images/blanco.gif differ