class Document implements Renderable

A view which renders a HTML skeleton for Flarum's frontend app.

Properties

null|string $title <p>The title of the document, displayed in the <title> tag.</p>
null|string $language <p>The language of the document, displayed as the value of the attribute <code>lang</code> in the <html> tag.</p>
null|string $direction <p>The text direction of the document, displayed as the value of the attribute <code>dir</code> in the <html> tag.</p>
string $appView <p>The name of the frontend app view to display.</p>
string $layoutView <p>The name of the frontend layout view to display.</p>
string $contentView <p>The name of the frontend content view to display.</p>
string|Renderable $content <p>The SEO content of the page, displayed within the layout in <noscript> tags.</p>
array $payload <p>Other variables to preload into the Flarum JS.</p>
array $meta <p>An array of meta tags to append to the page's <head>.</p>
null|string $canonicalUrl <p>The canonical URL for this page.</p>
array $head <p>An array of strings to append to the page's <head>.</p>
array $foot <p>An array of strings to prepend before the page's </body>.</p>
array $js <p>An array of JavaScript URLs to load.</p>
array $css <p>An array of CSS URLs to load.</p>
array $preloads <p>An array of preloaded assets.</p>
protected Factory $view
protected array $forumApiDocument
protected ServerRequestInterface $request

Methods

__construct(Factory $view, array $forumApiDocument, ServerRequestInterface $request)

No description

string
render()

No description

View
makeView()

No description

string
makeTitle()

No description

View
makeLayout()

No description

View
makeContent()

No description

array
makePreloads()

No description

string
makeHead()

No description

string
makeJs()

No description

string
makeFoot()

No description

array
getForumApiDocument()

No description

setForumApiDocument(array $forumApiDocument)

No description

Details

__construct(Factory $view, array $forumApiDocument, ServerRequestInterface $request)

Parameters

Factory $view
array $forumApiDocument
ServerRequestInterface $request

string render()

Return Value

string

protected View makeView()

Return Value

View

protected string makeTitle()

Return Value

string

protected View makeLayout()

Return Value

View

protected View makeContent()

Return Value

View

protected array makePreloads()

Return Value

array

protected string makeHead()

Return Value

string

protected string makeJs()

Return Value

string

protected string makeFoot()

Return Value

string

array getForumApiDocument()

Return Value

array

setForumApiDocument(array $forumApiDocument)

Parameters

array $forumApiDocument