Homepage
Main navigation
Main content
Additional information
Login / Sign up
Quality Guidelines
About
GitHub
Propose new content
Winter CMS resources and help articles
Simple and to the point. Optimized by the community.
×
Login / Sign up
Quality Guidelines
About
GitHub
Propose new content
Edit trick
Changes will be published after manual review
Title
Give your trick a describing title. Do
not
start with «How to...».
Your trick
Keep it short and concise! Markdown is supported.
If you want to render twig content contained in a string (a textarea field for example), you can do so with a twig filter as shown below: Add this twig filter to your Plugin.php: ``` use Cms\Classes\Controller; public function registerMarkupTags() { return [ 'filters' => [ 'twig' => function ($content, $vars=[]) { $controller = Controller::getController() ?: new Controller; $vars = array_merge($vars, $controller->vars); $env = $controller->getTwig(); return $env->createTemplate($content)->render($vars); }, ], ]; } ``` You can now render any twig content in your markup as shown below: ``` {{ fieldWithTwigContent | twig }} ```
References
Add additional online resources to your trick
+ Add reference
Topics
If your trick fits more than one topic select multiple. Select at least one.
Backend
Plugin Development
CMS
Twig
Themes
Deployment
Tags
You can use existing tags or create new ones. Add at least one.
Submit for review
Cancel
We use cookies to measure the performance of this website. Do you want to accept these cookies?
Accept
Decline