%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/loslex/demo/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/
Upload File :
Create Path :
Current File : /www/loslex/demo/vendor/maximebf/debugbar/src/DebugBar/Bridge/Twig/MeasureTwigExtension.php

<?php

namespace DebugBar\Bridge\Twig;

use Twig\Extension\AbstractExtension;

/**
 * Access debugbar timeline measure in your Twig templates.
 * Based on Symfony\Bridge\Twig\Extension\StopwatchExtension
 *
 * @package DebugBar\Bridge\Twig
 */
class MeasureTwigExtension extends AbstractExtension
{
    /**
     * @var \DebugBar\DataCollector\TimeDataCollector|null
     */
    protected $timeCollector;

    /**
     * @var string
     */
    protected $tagName;

    /**
     * Create a new auth extension.
     *
     * @param \DebugBar\DataCollector\TimeDataCollector|null $debugbar
     * @param string $tagName
     */
    public function __construct($timeCollector, $tagName = 'measure')
    {
        $this->timeCollector = $timeCollector;
        $this->tagName = $tagName;
    }

    /**
     * {@inheritDoc}
     */
    public function getName()
    {
        return static::class;
    }

    /**
     * @return \Twig\TokenParser\TokenParserInterface[]
     */
    public function getTokenParsers()
    {
        return [
            /*
             * {% measure foo %}
             * Some stuff which will be recorded on the timeline
             * {% endmeasure %}
             */
            new MeasureTwigTokenParser(!is_null($this->timeCollector), $this->tagName, $this->getName()),
        ];
    }

    public function startMeasure(...$arg)
    {
        if (!$this->timeCollector) {
            return;
        }

        $this->timeCollector->startMeasure(...$arg);
    }

    public function stopMeasure(...$arg)
    {
        if (!$this->timeCollector) {
            return;
        }

        $this->timeCollector->stopMeasure(...$arg);
    }
}

Zerion Mini Shell 1.0