Nothing
#' Loading function for tabs
load_tabs_server <- function(input, output, session){
tabs <- list.files("tabs/")
for (i in seq_along(tabs)){
FilePath <- paste0("tabs/",tabs[i],"/server.R")
FileContent <- readr::read_file(file = FilePath)
if ((file.info(FilePath)$size != 0) && (trimws(na.omit(FileContent )) != "")){
pre <- paste0("moduleServer(id = 'tab",i,"',function(input, output, session){")
aft <- "})"
temp <- tempfile()
write_file(paste0(pre,FileContent,aft),temp)
source(temp)
}
}
}
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.