Spamworldpro Mini Shell
Spamworldpro


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/app/bundles/CoreBundle/Twig/Extension/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Twig/Extension/StorageExtension.php
<?php

declare(strict_types=1);

namespace Mautic\CoreBundle\Twig\Extension;

use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;

/**
 * The main goal of this function is to save Twig's context into memory
 * from child templates, so that it can be restored by parent templates.
 * This is a workaround as Twig doesn't support passing back variables
 * from child to parent templates.
 */
class StorageExtension extends AbstractExtension
{
    /**
     * @var array<string,mixed>
     */
    protected array $storage = [];

    public function getFunctions()
    {
        return [
            new TwigFunction('save', [$this, 'save'], ['needs_context' => true]),
            new TwigFunction('restore', [$this, 'restore'], ['needs_context' => true]),
        ];
    }

    /**
     * @param mixed $context
     */
    public function save($context, string $name): void
    {
        $this->storage[$name] = $context;
    }

    /**
     * @param mixed $context
     */
    public function restore(&$context, string $name): void
    {
        $context = array_merge($context, $this->storage[$name]);
    }
}

Spamworldpro Mini