GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Dancer2::Core::Role::Template(3) User Contributed Perl Documentation Dancer2::Core::Role::Template(3)

Dancer2::Core::Role::Template - Role for template engines

version 0.400000

Any class that consumes this role will be able to be used as a template engine under Dancer2.

In order to implement this role, the consumer must implement the method "render". This method will receive three arguments:

$self
$template
$tokens

Any template receives the following tokens, by default:

  • "perl_version"

    Current version of perl, effectively $^V.

  • "dancer_version"

    Current version of Dancer2, effectively "Dancer2->VERSION".

  • "settings"

    A hash of the application configuration.

  • "request"

    The current request object.

  • "params"

    A hash reference of all the parameters.

    Currently the equivalent of "$request->params".

  • "vars"

    The list of request variables, which is what you would get if you called the "vars" keyword.

  • "session"

    The current session data, if a session exists.

The name of the template engine (e.g.: Simple).

The charset. The default value is UTF-8.

The default file extension. If not provided, tt is used.

Path to the directory containing the views.

Path to the directory containing the layouts.

Relative path to the layout directory.

Default: layouts.

Contains the engine.

Returns the full path to the requested view.

Returns the full path to the requested layout.

Returns true if the requested pathname exists. Can be used for either views or layouts:

    $self->pathname_exists( $self->view_pathname( 'some_view' ) );
    $self->pathname_exists( $self->layout_pathname( 'some_layout' ) );

Render the layout with the applied tokens

Dancer Core Developers

This software is copyright (c) 2022 by Alexis Sukrieh.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-03-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.