Skip to content

Controller

provides()

provides() — returns void

Available in: controller Category: Configuration Functions

Defines formats that the controller will respond with upon request. The format can be requested through a URL variable called format, by appending the format name to the end of a URL as an extension (when URL rewriting is enabled), or in the request header.

NameTypeRequiredDefaultDescription
formatsstringnoFormats to instruct the controller to provide. Valid values are html (the default), xml, json, csv, pdf, and xls.
provides("html,xml,json");