You are here

public function LicenseWithField::grantLicense in Commerce License 8.2

Reacts to the license being activated.

The license's privileges should be granted to its user. This is called during preSave(), so values may be set on the license entity.

Parameters

\Drupal\commerce_license\Entity\LicenseInterface $license: The license entity.

Overrides TestLicenseBase::grantLicense

File

tests/modules/commerce_license_test/src/Plugin/Commerce/LicenseType/LicenseWithField.php, line 21

Class

LicenseWithField
License type for testing a field can be set when granting and revoking.

Namespace

Drupal\commerce_license_test\Plugin\Commerce\LicenseType

Code

public function grantLicense(LicenseInterface $license) {

  // Set the value on our field.
  $license
    ->set('test_field', 'granted');
}