Skip to content

Instantly share code, notes, and snippets.

@clrockwell
Created September 2, 2017 20:42
Show Gist options
  • Save clrockwell/7ae8f7685f552e26f8e73a6657e33fb2 to your computer and use it in GitHub Desktop.
Save clrockwell/7ae8f7685f552e26f8e73a6657e33fb2 to your computer and use it in GitHub Desktop.
Some Commerce License code samples
<?php
// Load all licenses for current user that grant a specific license
$existing = $this->entityTypeManager->getStorage('commerce_license')
->loadByProperties([
'license_role' => 'machine_name_of_role',
'uid' => \Drupal::current_user()->id()
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment