View.retrieve

Retrieves the generated result of a view. This should generally only be used to render partial views into another view.

  1. string retrieve(string name, string sectionName)
  2. string retrieve(string sectionName)
    class View
    final
    string
    retrieve
    (
    string name
    )
    (
    string sectionName = ""
    )

Parameters

name

The name of the view to generate the result of.

sectionName string

The name of the section to retrieve the result of.

Return Value

Type: string

A string qeuivalent to the generated result.

Meta