Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/wyrihaximus/twig-view/src/Event/ProfilerListener.php
<?php

/**
 * This file is part of TwigView.
 *
 ** (c) 2014 Cees-Jan Kiewiet
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace WyriHaximus\TwigView\Event;

use
Cake\Event\EventListenerInterface;
use
Cake\Event\EventManager;
use
WyriHaximus\TwigView\Lib\Cache;
use
WyriHaximus\TwigView\Lib\Twig\Extension;
use
WyriHaximus\TwigView\Lib\Twig\TokenParser;

/**
 * Class ExtensionsListener
 * @package WyriHaximus\TwigView\Event
 */
class ProfilerListener implements EventListenerInterface
{
   
/**
     * Return implemented events.
     *
     * @return array
     */
   
public function implementedEvents()
    {
        return [
           
ConstructEvent::EVENT => 'construct',
        ];
    }

   
/**
     * Event handler.
     *
     * @param ConstructEvent $event Event.
     *
     * @return void
     */
   
public function construct(ConstructEvent $event)
    {
       
$profile = new \Twig_Profiler_Profile();
       
$event->
           
getTwig()->
           
addExtension(new Extension\Profiler($profile));

       
EventManager::instance()->dispatch(ProfileEvent::create($profile));
    }
}