You are here

public function BillingScheduleManager::processDefinition in Commerce Recurring Framework 8

Performs extra processing on plugin definitions.

By default we add defaults for the type to the definition. If a type has additional processing logic they can do that by replacing or extending the method.

Overrides DefaultPluginManager::processDefinition

File

src/BillingScheduleManager.php, line 41

Class

BillingScheduleManager
Manages discovery and instantiation of billing schedule plugins.

Namespace

Drupal\commerce_recurring

Code

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 billing schedule "%s" must define the "%s" property.', $plugin_id, $required_property));
    }
  }
}