]> git.llucax.com Git - mecon/ai.git/blobdiff - lib/AI/GrupoSecciones.php
Se hace el select lindo para elegir padre y para elegir antigüedad de
[mecon/ai.git] / lib / AI / GrupoSecciones.php
index 23fa14a5edcc545a9f3beaa8cd12debf21f3ce96..c7d54d93d712844906c5b00e8356edce29fa2471 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// vim: set expandtab tabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 shiftwidth=4 binary:
 // +--------------------------------------------------------------------+
 // |                      Ministerio de Economía                        |
 // |                  AI (Administrador de Intranet)                    |
@@ -294,6 +294,32 @@ class AI_GrupoSecciones {
     }
     // -X2C
 
+    // +X2C Operation 512
+    /**
+     * Obtiene un array con una lista de secciones.
+     *
+     * @param  DB $db Base de datos a usar para obtener los datos.
+     *
+     * @return array
+     * @access public
+     * @static
+     */
+    function getSeccionesArray($db = null) // ~X2C
+    {
+               if ($db === null) {
+                       $db =& DB::connect('mysql://mark:mark@intranet-db.mecon.ar/MEconDAV',
+                               array('persistent' => true));
+               }
+               if (DB::isError($db)) {
+                       return $db;
+               }
+               return $db->getAssoc('
+            SELECT   S.section_id, S.description
+            FROM     MEconDAV.Sections as S
+            ORDER BY description');
+    }
+    // -X2C
+
     // +X2C Operation 500
     /**
      * @return GrupoSecciones
@@ -307,4 +333,4 @@ class AI_GrupoSecciones {
 
 } // -X2C Class :AI_GrupoSecciones
 
-?>
+?>
\ No newline at end of file