pages {AnalysisPageServer} | R Documentation |
Get names of all pages in registry
pages(registry, include.services = FALSE) ## S3 method for class 'AnalysisPageRegistry' pages(registry, include.services = FALSE)
registry |
AnalysisPageRegistry object |
include.services |
Logical. Should I include services in my list of all pages? Default: FALSE, do not include services. |
Get names of all pages in registry
Character vector of names of pages in registry
Service pages are identified as those having their service
flag set, which is done at page build time using
the service
parameter of the new.analysis.page
constructor.
Brad Friedman
new.registry
, register.page
, has.page
, get.page
empty.pages <- pages(new.registry()) # should be empty character vector example(register.page, ask=FALSE) # see register.page example---registers the sine handler pages(registry) # should now be the character vector "sine"