Nothing
#####################################################################
## This program is distributed in the hope that it will be useful, ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
## GNU General Public License for more details. ##
#####################################################################
#' @title gtoxConfLoad
#' @description Load the current configuration file
#' @rdname config_funcs
#' @param list.new Logical of length 1, should the new settings be printed?
#'
#' @examples
#'
#' ## Set the environment variable pointing to the configuration file
#' Sys.setenv(TCPL_CONF=file.path(system.file(package="GladiaTOX"),"gtoxConf"))
#'
#' ## Configure database
#' gtoxConfLoad()
#'
#' @export
#'
gtoxConfLoad <- function (list.new = TRUE) {
stopifnot(is.logical(list.new) && length(list.new) == 1)
conf_file <- .getConfFile()
## Variable-binding to pass R CMD Check
DRVR <- USER <- PASS <- HOST <- DB <- NULL
source(
conf_file,
local=TRUE
)
gtoxConf(DRVR, USER, PASS, HOST, DB)
gtoxConfList()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.