]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/Arbol/ArbolDB.php
Workarround para que no explote con un nivel de profundidad mayor a 4.
[mecon/meconlib.git] / lib / MECON / HTML / Arbol / ArbolDB.php
index 583a0a55c54a125c0ea64d7469e23b8f91a2c1d1..111c4e5cd69f80950f0aa92efacf9b2191fd3183 100644 (file)
@@ -1,9 +1,31 @@
-<?
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+                             Ministerio de Economía
+                                    meconlib
+-------------------------------------------------------------------------------
+This file is part of meconlib.
 
-require_once 'MECON/HTML/Arbol.php';
-require_once 'DB.php';
+meconlib is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2 of the License, or (at your option)
+any later version.
 
+meconlib is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License; if not,
+write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+Boston, MA  02111-1307  USA
+-------------------------------------------------------------------------------
+Creado: jue jul 17 15:33:41 ART 2003
+Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
 
+require_once 'MECON/HTML/Arbol.php';
+require_once 'DB.php';
 
 class HTML_ArbolDB extends HTML_Arbol
 {
@@ -11,7 +33,10 @@ class HTML_ArbolDB extends HTML_Arbol
        var $tabla;
        var $nombre;
        var $id;
-       var $link;
+       var $link = null;
+       var $prepend_link = null;
+       var $where = '';
+       var $order = '';
        var $db;
     
     function HTML_ArbolDB($dbdata, $imagen)
@@ -21,7 +46,14 @@ class HTML_ArbolDB extends HTML_Arbol
        $this->tabla = $dbdata['tabla'];
        $this->nombre = $dbdata['nombre'];
        $this->id = $dbdata['id'];
-       $this->link = $dbdata['link']; 
+        if(isset($dbdata['prepend_link']))
+         $this->prepend_link = $dbdata['prepend_link']; 
+        if(isset($dbdata['link']))
+         $this->link = $dbdata['link']; 
+        if(isset($dbdata['where']))
+         $this->where = $dbdata['where'];
+        if(isset($dbdata['order']))
+         $this->order = ' ORDER BY '.$dbdata['nombre'].' '.$dbdata['order']; 
        $this->db = $dbdata['db']; 
        $dat = $this->BuscarHijos(0);
         parent::HTML_Arbol($dat, $imagen);
@@ -29,23 +61,34 @@ class HTML_ArbolDB extends HTML_Arbol
   
     function BuscarHijos($id)
     {
-        $sql = "SELECT $this->nombre, $this->id
-               FROM $this->tabla ";
-       if(!is_null($this->padre))
-         $sql .= "WHERE $this->padre = '$id'";
+        $sql = "SELECT $this->nombre, $this->id ";
+        if(!is_null($this->link))
+        $sql .=  ", $this->link ";
+        $sql .=  "FROM $this->tabla ";
+        if(!is_null($this->padre) or $this->where)
+          $sql .= 'WHERE ';
+        if(!is_null($this->padre)) {
+          $sql .= "$this->padre = '$id'";
+          if ($this->where)
+            $sql .= ' AND';
+        } elseif ($this->where)
+          $sql .= $this->where;
+        $sql .= $this->order;
         $result = $this->db->query($sql);
         if(DB::isError($result))
           die($result->getMessage());
-       $dat = array();
+        $dat = array();
        while($row = $result->fetchRow())
        {
            $titulo = $row[0];
            $id = $row[1];
            if(is_null($this->padre)) $sub = array();
            else $sub = $this->BuscarHijos($id);
+           if(!is_null($this->link))  $link = $this->prepend_link.$row[2];
+           else $link = $this->prepend_link.$id;
            $dat[] = array(
                'titulo'=> $titulo,
-               'link' => $this->link.$id,
+               'link' => $link,
                'sub' => $sub 
            );
        }
@@ -54,4 +97,5 @@ class HTML_ArbolDB extends HTML_Arbol
     }
 
 }
+
 ?>