Skip to content
This repository was archived by the owner on Jan 21, 2020. It is now read-only.

Expressive zend-view integration 1.3.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 02 Mar 19:25
· 167 commits to master since this release

Added

  • #23 adds the ability to disable layouts either globally or when rendering. Disable globally by setting the default layout parameter to boolean false:

    $renderer->addDefaultParam(TemplateRendererInterface::TEMPLATE_ALL, 'layout', false);

    Or do so when rendering, by passing the template variable layout with a boolean false value:

    $renderer->render($templateName, [
        'layout' => false,
        // other template variables
    ]);

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.