Файл: symfony-2.7/src/Symfony/Bundle/WebProfilerBundle/Twig/WebProfilerExtension.php
Строк: 47
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyBundleWebProfilerBundleTwig;
use SymfonyComponentHttpKernelDataCollectorUtilValueExporter;
/**
* Twig extension for the profiler
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class WebProfilerExtension extends Twig_Extension
{
/**
* @var ValueExporter
*/
private $valueExporter;
/**
* {@inheritdoc}
*/
public function getFunctions()
{
return array(
new Twig_SimpleFunction('profiler_dump', array($this, 'dumpValue')),
);
}
public function dumpValue($value)
{
if (null === $this->valueExporter) {
$this->valueExporter = new ValueExporter();
}
return $this->valueExporter->exportValue($value);
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'profiler';
}
}