This plugin makes it possible to sell licenses for digital products with Craft Commerce.
Digital Products requires Craft 3.1.20 and Craft Commerce 2.1.0 or later.
You can install this plugin from the Plugin Store or with Composer.
Go to the Plugin Store in your project’s Control Panel and search for “Digital Products”. Then click on the “Install” button in its modal window.
Open your terminal and run the following commands:
# go to the project directory
cd /path/to/my-project.test
# tell Composer to load the plugin
composer require craftcms/digital-products
# tell Craft to install the plugin
./craft install/plugin digital-products
Plugins can be notified right before or right after a product type is saved in case your plugin needs to do something at that point:
use craft\digitalproducts\events\ProductTypeEvent;
use craft\digitalproducts\services\ProductTypes;
use yii\base\Event;
// ...
Event::on(ProductTypes::class, ProductTypes::EVENT_BEFORE_SAVE_PRODUCTTYPE, function(ProductTypeEvent $e) {
// Some custom code to be executed when a product type is saved
});
Plugins get a chance to provide a license key instead of relying on Digital Products to generate one.
use craft\digitalproducts\elements\License;
use craft\digitalproducts\events\GenerateKeyEvent;
use craft\digitalproducts\Plugin as DigitalProducts;
use yii\base\Event;
// ...
Event::on(License::class, License::EVENT_GENERATE_LICENSE_KEY, function(GenerateKeyEvent $e) {
do {
$licenseKey = // custom key generation logic...
} while (!DigitalProducts::getInstance()->getLicenses()->isLicenseKeyUnique($licenseKey));
$e->licenseKey = $licenseKey;
});
Both licenses and products have several eager-loadable properties
product
- Allows you to eager-load the product associated with the license.order
- Allows you to eager-load the order associated with the license, if any.owner
- Allows you to eager-load the Craft user that owns the license, if any.
existingLicenses
- Eager-loads all the existing licenses for the currently logged in Craft User.
{% if currentUser %}
{% set licenses = craft.digitalProducts.licenses.owner(currentUser).with(['products', 'order']) %}
<div class="panel panel-default">
<div class="panel-heading"><h3 class="panel-title">Licenses</h3></div>
{% if licenses %}
<table class="table">
<thead>
<tr>
<th>Licensed product</th>
<th>License date</th>
<th>Order</th>
</tr>
</thead>
<tbody>
{% for license in licenses %}
<tr>
<td><a href="{{ license.product.getUrl() }}">{{ license.product.title }}</a></td>
<td>{{ license.dateCreated|date('Y-m-d H:i:s') }}</td>
<td>
{% if license.orderId %}
<a href="/store/order?number={{ license.order.number }}">Order no. {{ license.orderId }}</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{% else %}
<p>Please log in first</p>
{% endif %}
{% set products = craft.digitalProducts.products.type('onlineCourses').with(['existingLicenses']) %}
{% if products|length %}
<table class="table">
<thead>
<tr>
<th>Product</th>
<th>License status</th>
</tr>
</thead>
<tbody>
{% for product in products %}
<tr>
<td>{{ product.title }}</td>
<td>
{% if product.existingLicenses|length %}
You already own this product.
{% else %}
<a href="{{ product.getUrl() }}">Get it now!</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}