StockEventTypeManager.php in Commerce Stock 8
File
src/StockEventTypeManager.php
View source
<?php
namespace Drupal\commerce_stock;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
class StockEventTypeManager extends DefaultPluginManager implements StockEventTypeManagerInterface {
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/Commerce/StockEventType', $namespaces, $module_handler, 'Drupal\\commerce_stock\\Plugin\\Commerce\\StockEventType\\StockEventTypeInterface', 'Drupal\\commerce_stock\\Annotation\\StockEventType');
$this
->alterInfo('commerce_stock_event_type_info');
$this
->setCacheBackend($cache_backend, 'commerce_stock_event_type_plugins');
}
public function processDefinition(&$definition, $plugin_id) {
parent::processDefinition($definition, $plugin_id);
foreach ([
'id',
'label',
] as $required_property) {
if (empty($definition[$required_property])) {
throw new PluginException(sprintf('The stock event type "%s" must define the "%s" property.', $plugin_id, $required_property));
}
}
}
}