R/rk.get.rkh.prompter.R

Defines functions rk.get.rkh.prompter

Documented in rk.get.rkh.prompter

# Copyright 2014 Meik Michalke <meik.michalke@hhu.de>
#
# This file is part of the R package rkwarddev.
#
# rkwarddev is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# rkwarddev 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.
#
# You should have received a copy of the GNU General Public License
# along with rkwarddev.  If not, see <http://www.gnu.org/licenses/>.

#' Get .rkh related information stored internally
#' 
#' @param component Character string, the name under which you stored information. If \code{NULL},
#'    returns all information stored in the internal \code{rkh.prompter} list.
#' @param id Character string, the node ID if a given component to search for.  If \code{NULL}, returns
#'    the full list of the given component, otherwise only the help information for the requested node.
#' @export
#' @examples
#' rk.get.rkh.prompter("rk.myPlugin", "someID")

rk.get.rkh.prompter <- function(component=NULL, id=NULL){
  rkh.prompter <- get.rkh.prompter()

  if(is.null(component)){
    return(rkh.prompter)
  } else {
    rkh.prompter <- rkh.prompter[[component]]
    if(is.null(id)){
      return(rkh.prompter)
    } else {
      # let's see if we need to extract IDs first
      id <- check.ID(id)
      return(rkh.prompter[[id]])
    }
  }
}
rkward-community/rkwarddev documentation built on May 9, 2022, 3:02 p.m.