You are here

commerce_license_example.module in Commerce License 7

Provides an example license type for testing and development.

File

modules/commerce_license_example/commerce_license_example.module
View source
<?php

/**
 * @file
 * Provides an example license type for testing and development.
 */

/**
 * Implements hook_ctools_plugin_directory().
 */
function commerce_license_example_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'commerce_license') {
    return "plugins/{$plugin_type}";
  }
}