R/mod_methode.R

Defines functions mod_methode_ui mod_methode_server

Documented in mod_methode_server mod_methode_ui

# Module UI
  
#' @title   mod_methode_ui and mod_methode_server
#' @description  Methodologie
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_methode
#'
#' @keywords internal
#' @export 
#' @importFrom shiny NS tagList 
mod_methode_ui <- function(id){
  ns <- NS(id)
  tagList(
    includeMarkdown(
      system.file("app/www/methodo.md", package = "gravitype")
    )
  )
}
    
# Module Server
    
#' @rdname mod_methode
#' @export
#' @keywords internal
    
mod_methode_server <- function(input, output, session){
  ns <- session$ns
}
    
## To be copied in the UI
# mod_methode_ui("methode_ui_1")
    
## To be copied in the server
# callModule(mod_methode_server, "methode_ui_1")
 
tvroylandt/gravitype documentation built on Feb. 7, 2020, 2:37 a.m.