From bfe3892532ac5e8ef2828b9e5c7a645ec3d77976 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 18 Sep 2003 19:28:25 +0000 Subject: [PATCH] =?utf8?q?Se=20agrega=20m=C3=A9todo=20getGrupo().?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/AI/GrupoSecciones.php | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/lib/AI/GrupoSecciones.php b/lib/AI/GrupoSecciones.php index 589b127..f5527b7 100644 --- a/lib/AI/GrupoSecciones.php +++ b/lib/AI/GrupoSecciones.php @@ -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 -- 2.43.0