1 | <?php |
||
23 | class LanguageSwitchLinks extends FieldPluginBase implements ContainerFactoryPluginInterface { |
||
|
|||
24 | |||
25 | /** |
||
26 | * The language manager. |
||
27 | * |
||
28 | * @var \Drupal\Core\Language\LanguageManagerInterface |
||
29 | */ |
||
30 | protected $languageManager; |
||
31 | |||
32 | /** |
||
33 | * The subrequest buffer service. |
||
34 | * |
||
35 | * @var \Drupal\graphql\GraphQL\Buffers\SubRequestBuffer |
||
36 | */ |
||
37 | protected $subRequestBuffer; |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function __construct( |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | protected function resolveValues($value, array $args, ResolveInfo $info) { |
||
95 | |||
96 | } |
||
97 |