TestLocalActionWithConfig.php

Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php
  2. 10 core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php
  3. 11.x core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php

Namespace

Drupal\menu_test\Plugin\Menu\LocalAction

File

core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalActionWithConfig.php

View source
<?php

namespace Drupal\menu_test\Plugin\Menu\LocalAction;

use Drupal\Core\Config\Config;
use Drupal\Core\Menu\LocalActionDefault;
use Drupal\Core\Routing\RouteProviderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;

/**
 * Defines a test local action plugin class.
 */
class TestLocalActionWithConfig extends LocalActionDefault {
    
    /**
     * @var \Drupal\Core\Config\Config
     */
    protected $config;
    
    /**
     * {@inheritdoc}
     */
    public function getTitle(Request $request = NULL) {
        return $this->config
            ->get('title');
    }
    
    /**
     * Constructs a TestLocalActionWithConfig object.
     *
     * @param array $configuration
     *   A configuration array containing information about the plugin instance.
     * @param string $plugin_id
     *   The plugin_id for the plugin instance.
     * @param mixed $plugin_definition
     *   The plugin implementation definition.
     * @param \Drupal\Core\Routing\RouteProviderInterface $route_provider
     *   The route provider to load routes by name.
     * @param \Drupal\Core\Config\Config $config
     *   The 'menu_test.links.action' config.
     */
    public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteProviderInterface $route_provider, Config $config) {
        parent::__construct($configuration, $plugin_id, $plugin_definition, $route_provider);
        $this->config = $config;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
        return new static($configuration, $plugin_id, $plugin_definition, $container->get('router.route_provider'), $container->get('config.factory')
            ->get('menu_test.links.action'));
    }

}

Classes

Title Deprecated Summary
TestLocalActionWithConfig Defines a test local action plugin class.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.