![]() 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/mautic.corals.io/vendor/symfony/templating/Helper/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Templating\Helper; /** * SlotsHelper manages template slots. * * @author Fabien Potencier <[email protected]> */ class SlotsHelper extends Helper { protected $slots = []; protected $openSlots = []; /** * Starts a new slot. * * This method starts an output buffer that will be * closed when the stop() method is called. * * @throws \InvalidArgumentException if a slot with the same name is already started */ public function start(string $name) { if (\in_array($name, $this->openSlots)) { throw new \InvalidArgumentException(sprintf('A slot named "%s" is already started.', $name)); } $this->openSlots[] = $name; $this->slots[$name] = ''; ob_start(); ob_implicit_flush(0); } /** * Stops a slot. * * @throws \LogicException if no slot has been started */ public function stop() { if (!$this->openSlots) { throw new \LogicException('No slot started.'); } $name = array_pop($this->openSlots); $this->slots[$name] = ob_get_clean(); } /** * Returns true if the slot exists. * * @return bool */ public function has(string $name) { return isset($this->slots[$name]); } /** * Gets the slot value. * * @param bool|string $default The default slot content * * @return string */ public function get(string $name, $default = false) { return $this->slots[$name] ?? $default; } /** * Sets a slot value. */ public function set(string $name, string $content) { $this->slots[$name] = $content; } /** * Outputs a slot. * * @param bool|string $default The default slot content * * @return bool true if the slot is defined or if a default content has been provided, false otherwise */ public function output(string $name, $default = false) { if (!isset($this->slots[$name])) { if (false !== $default) { echo $default; return true; } return false; } echo $this->slots[$name]; return true; } /** * Returns the canonical name of this helper. * * @return string */ public function getName() { return 'slots'; } }