Created
September 2, 2017 20:42
-
-
Save clrockwell/7ae8f7685f552e26f8e73a6657e33fb2 to your computer and use it in GitHub Desktop.
Some Commerce License code samples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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