具有全局树枝服务的基类控制器

时间:2018-06-11 06:07:48

标签: symfony

首先,我必须说我已经看了好几天的答案和文件,但没有人回答我的问题。

我想要做的唯一而简单的事情是将twig服务用作BaseController中的全局服务。

这是我的代码:

<?php
namespace App\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use App\Service\Configuration;
use App\Utils\Util;


abstract class BaseController extends Controller
{

    protected $twig;
    protected $configuration;

    public function __construct(\Twig_Environment $twig,Configuration $configuration)
  {
    $this->twig = $twig;
    $this->configuration = $configuration;
  }

}

然后在我的所有控制器中扩展树枝和配置服务,而不必再次注入它。试。

//...
//......

/**
 * @Route("/configuration", name="configuration_")
 */
class ConfigurationController extends BaseController
{

    public function __construct()
    {
       //parent::__construct();

       $this->twig->addGlobal('menuActual', "config");

    }

正如您所看到的,我唯一想要的是让全局services全局更有条理,并为我的所有shortcuts创建一些全局controllers。在这个例子中,我正在分配一个全局变量,以便在我的模板菜单中激活一个链接,并且在每个控制器中我必须为menuActual添加一个新值,例如在UserController变量中是addGlobal('menuActual', "users")

我认为这应该是我没有找到的symfony的良好实践:(。

在每个控制器中包含\Twig_Environment以向视图分配变量似乎对我来说非常重复。这应该在控制器中默认出现。

由于

1 个答案:

答案 0 :(得分:2)

我也有这个问题 - 试图不必为每个控制器/动作重复一些代码。

我使用事件监听器解决了它:

# services.yaml
app.event_listener.controller_action_listener:
    class: App\EventListener\ControllerActionListener
    tags:
        - { name: kernel.event_listener, event: kernel.controller, method: onKernelController }
#src/EventListener/ControllerActionListener.php
namespace App\EventListener;

use App\Controller\BaseController;
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;

/**
 * Class ControllerActionListener
 *
 * @package App\EventListener
 */
class ControllerActionListener
{
    public function onKernelController(FilterControllerEvent $event)
    {
        //fetch the controller class if available
        $controllerClass = null;
        if (!empty($event->getController())) {
            $controllerClass = $event->getController()[0];
        }

        //make sure your global instantiation only fires if the controller extends your base controller
        if ($controllerClass instanceof BaseController) {
            $controllerClass->getTwig()->addGlobal('menuActual', "config");
        }
    }
}