]> git.llucax.com Git - mecon/ai.git/commitdiff
Se agrega método getGrupo().
authorLeandro Lucarella <llucax@gmail.com>
Thu, 18 Sep 2003 19:28:25 +0000 (19:28 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 18 Sep 2003 19:28:25 +0000 (19:28 +0000)
lib/AI/GrupoSecciones.php

index 589b1270d54d9c1e1503f9a5c55fdb60323a751e..f5527b7c5b1b315bda8e4328905fe93d011ef6e4 100644 (file)
@@ -77,7 +77,7 @@ class AI_GrupoSecciones extends AI_DBTreeObject {
     var $secciones = array();
 
     /**
-     * Antigedad (en d?s) de las noticias a mostrar.
+     * Antigüedad (en días) de las noticias a mostrar.
      *
      * @var    int $antiguedad
      * @access public
@@ -243,6 +243,31 @@ class AI_GrupoSecciones extends AI_DBTreeObject {
     }
     // -X2C
 
+    // +X2C Operation 537
+    /**
+     * Obtiene el grupo al que pertenece una sección.
+     *
+     * @param  int $seccion Sección a buscar.
+     * @param  DB $db DB a usar.
+     *
+     * @return AI_GrupoSecciones
+     * @access public
+     */
+    function getGrupo($seccion, $db = null) // ~X2C
+    {
+        static $conf;
+        if (!$conf) {
+            $conf = parse_ini_file(AI_GRUPOSECCIONES_CONFFILE, true);
+            $conf = $conf['secciones'];
+        }
+        extract($conf);
+               return $db->getOne("
+            SELECT  $id
+            FROM    $base.$tabla
+            WHERE   $campo = " . $db->quote($seccion));
+    }
+    // -X2C
+
 } // -X2C Class :AI_GrupoSecciones
 
 ?>
\ No newline at end of file