View source: R/Module_WelcomePageModule.R
WelcomePageModule | R Documentation |
Start page module, shows update news and allows loading of data.
WelcomePageModule( input, output, session, values = reactiveValues(projectData = values$projectData, featureTables = values$featureTables, MSData = values$MSData, GlobalOpts = values$GlobalOpts), show = reactive({ TRUE }) ) WelcomePageModuleUI(id)
input |
arguments necessary for use with
|
output |
arguments necessary for use with
|
session |
arguments necessary for use with
|
values |
a |
show |
a reactive(), if show() is TRUE, will show update news |
id |
id to be used to define a namespace via |
Returns nothing
WelcomePageModule
: Server logic
WelcomePageModuleUI
: UI elements
values
for a description of the values
object
## Not run: library(shiny) ui <- MseekMinimalUI(WelcomePageModuleUI("examplemodule"), diagnostics = T) server <- function(input, output, session) { MseekMinimalServer(diagnostics = T, data = F, tables = F) ExampleModule <- callModule(WelcomePageModule, "examplemodule", values) } # Run Shiny app shinyApp(ui, server) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.