1 | <?php |
||
27 | class Path extends FieldPluginBase implements ContainerFactoryPluginInterface { |
||
|
|||
28 | use DependencySerializationTrait; |
||
29 | |||
30 | /** |
||
31 | * The language manager service. |
||
32 | * |
||
33 | * @var \Drupal\Core\Language\LanguageManagerInterface |
||
34 | */ |
||
35 | protected $languageManager; |
||
36 | |||
37 | /** |
||
38 | * Path constructor. |
||
39 | * |
||
40 | * @param array $configuration |
||
41 | * The plugin configuration array. |
||
42 | * @param string $pluginId |
||
43 | * The plugin id. |
||
44 | * @param mixed $pluginDefinition |
||
45 | * The plugin definition. |
||
46 | * @param \Drupal\Core\Language\LanguageManagerInterface $languageManager |
||
47 | * The language manager service. |
||
48 | */ |
||
49 | public function __construct( |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) { |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function resolveValues($value, array $args, ResolveInfo $info) { |
||
86 | |||
87 | } |
||
88 |