public static function CommerceTurnoverSensorPlugin::create in Monitoring 8
Creates an instance of the sensor with config.
Similar to ContainerFactoryPluginInterface but with typed config.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.
\Drupal\monitoring\Entity\SensorConfig $sensor_config: The configuration containing information about the sensor instance.
string $plugin_id: The plugin ID for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
Return value
static Returns an instance of the sensor.
Overrides ContentEntityAggregatorSensorPlugin::create
See also
\Drupal\Core\Plugin\ContainerFactoryPluginInterface
File
- src/
Plugin/ monitoring/ SensorPlugin/ CommerceTurnoverSensorPlugin.php, line 75
Class
- CommerceTurnoverSensorPlugin
- Monitors commerce order turnover stats.
Namespace
Drupal\monitoring\Plugin\monitoring\SensorPluginCode
public static function create(ContainerInterface $container, SensorConfig $sensor_config, $plugin_id, $plugin_definition) {
return new static($sensor_config, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('entity_field.manager'), $container
->get('commerce_price.currency_formatter'), $container
->get('commerce_store.current_store'), $container
->get('plugin.manager.workflow'), $container
->get('date.formatter'));
}