carlcs/craft-twigportal

Twig Portal plugin for Craft CMS

2.0.1 2022-04-19 15:52 UTC

This package is auto-updated.

Last update: 2024-03-08 21:36:24 UTC


README

Warning

This plugin has been abandoned. With the release of Craft 4.5, the _globals Twig variable has been added, rendering this plugin obsolete. The functionality it provided can now be achieved using the new variable.

Twig Portal plugin for Craft CMS

Adds a portal tag to Twig, to render DOM anywhere in the document.

Installation

Twig Portal is available in the Plugin Store. You can also install the plugin manually from the command line with the following commands.

composer require carlcs/craft-twigportal
php craft plugin/install twig-portal

Usage

_layout.html

<body>
    {% block content %}
    {% endblock %}

    {{ portalTarget('modals') }}
</body>

index.html

{% extends '_layout' %}

{% block content %}
    {{ include('_component') }}
{% endblock %}

_component.html

{% portal 'modals' %}
    <p>This will be rendered where the “modals” portal target function is located.</p>
{% endportal %}

License

MIT