Вход Регистрация
Файл: phpbb/event/kernel_exception_subscriber.php
Строк: 102
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbbevent;

use 
SymfonyComponentEventDispatcherEventSubscriberInterface;
use 
SymfonyComponentHttpKernelKernelEvents;
use 
SymfonyComponentHttpKernelEventGetResponseForExceptionEvent;
use 
SymfonyComponentHttpKernelExceptionHttpException;
use 
SymfonyComponentHttpFoundationResponse;

class 
kernel_exception_subscriber implements EventSubscriberInterface
{
    
/**
    * Template object
    * @var phpbbtemplatetemplate
    */
    
protected $template;

    
/**
    * User object
    * @var phpbbuser
    */
    
protected $user;

    
/**
    * Construct method
    *
    * @param phpbbtemplatetemplate $template Template object
    * @param phpbbuser $user User object
    */
    
public function __construct(phpbbtemplatetemplate $templatephpbbuser $user)
    {
        
$this->template $template;
        
$this->user $user;
    }

    
/**
    * This listener is run when the KernelEvents::EXCEPTION event is triggered
    *
    * @param GetResponseForExceptionEvent $event
    * @return null
    */
    
public function on_kernel_exception(GetResponseForExceptionEvent $event)
    {
        
page_header($this->user->lang('INFORMATION'));

        
$exception $event->getException();

        
$this->template->assign_vars(array(
            
'MESSAGE_TITLE'        => $this->user->lang('INFORMATION'),
            
'MESSAGE_TEXT'        => $exception->getMessage(),
        ));

        
$this->template->set_filenames(array(
            
'body'    => 'message_body.html',
        ));

        
page_footer(truefalsefalse);

        
$status_code $exception instanceof HttpException $exception->getStatusCode() : 500;
        
$response = new Response($this->template->assign_display('body'), $status_code);
        
$event->setResponse($response);
    }

    public static function 
getSubscribedEvents()
    {
        return array(
            
KernelEvents::EXCEPTION        => 'on_kernel_exception',
        );
    }
}
Онлайн: 1
Реклама