function TypedDataPropertyDeriverBase::create
Same name and namespace in other branches
- 4.0.x src/Plugin/Deriver/TypedDataPropertyDeriverBase.php \Drupal\ctools\Plugin\Deriver\TypedDataPropertyDeriverBase::create()
Creates a new class instance.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the fetcher.
string $base_plugin_id: The base plugin ID for the plugin ID.
Return value
static Returns an instance of this fetcher.
Overrides ContainerDeriverInterface::create
File
-
src/
Plugin/ Deriver/ TypedDataPropertyDeriverBase.php, line 53
Class
Namespace
Drupal\ctools\Plugin\DeriverCode
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static($container->get('typed_data_manager'), $container->get('string_translation'));
}