![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-view/src/Helper/ |
<?php declare(strict_types=1); namespace Laminas\View\Helper; use Laminas\View\Model\ModelInterface; /** * Renders a template and stores the rendered output as a placeholder * variable for later use. */ class RenderToPlaceholder extends AbstractHelper { /** * Renders a template and stores the rendered output as a placeholder * variable for later use. * * @param string|ModelInterface $script The template script to render * @param string $placeholder The placeholder variable name in which to store the rendered output * @return void */ public function __invoke($script, $placeholder) { $placeholderHelper = $this->view->plugin('placeholder'); $placeholderHelper($placeholder)->captureStart(); echo $this->view->render($script); $placeholderHelper($placeholder)->captureEnd(); } }