X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/8485a1e9661ed55cbd522b3a3fce5ac254ab3ba3..b4fb39ec82b3c1e0f904ab0fe39d61f5ec62e10a:/lib/AI/Sistema.php?ds=sidebyside diff --git a/lib/AI/Sistema.php b/lib/AI/Sistema.php index c073a15..e149668 100644 --- a/lib/AI/Sistema.php +++ b/lib/AI/Sistema.php @@ -144,6 +144,34 @@ FIXME - preguntar a gonzalo si le sirve. } // -X2C + // +X2C Operation 528 + /** + * Obtiene un array con los identificadores de los sistemas cargados. + * + * @param DB $db Base de datos de la cual obtener los sistemas. + * @param string $where Clausula WHERE para filtrar resultados. + * + * @return array + * @access public + * @static + */ + function getSistemasArray($db, $where = '') // ~X2C + { + static $conf; + if (!$conf) { + $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true); + } + extract($conf); + $query = " + SELECT $id + FROM $base.$tabla"; + if ($where) { + $query .= "WHERE $where"; + } + return $db->getCol($query); + } + // -X2C + } // -X2C Class :AI_Sistema ?> \ No newline at end of file