public static function TypedDataPropertyDeriverBase::create in Chaos Tool Suite (ctools) 8.3
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 51
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'));
}