pages {AnalysisPageServer}R Documentation

pages

Description

Get names of all pages in registry

Usage

pages(registry, include.services = FALSE)

## S3 method for class 'AnalysisPageRegistry'
pages(registry, include.services = FALSE)

Arguments

registry

AnalysisPageRegistry object

include.services

Logical. Should I include services in my list of all pages? Default: FALSE, do not include services.

Details

Get names of all pages in registry

Value

Character vector of names of pages in registry

Note

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.

Author(s)

Brad Friedman

See Also

new.registry, register.page, has.page, get.page

Examples

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"

[Package AnalysisPageServer version 1.16.0 Index]