}
// -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