You are here

function commerce_license_ctools_plugin_type in Commerce License 7

Implements hook_ctools_plugin_type().

File

./commerce_license.module, line 88
Provides a framework for selling access to local or remote resources.

Code

function commerce_license_ctools_plugin_type() {
  return array(
    'license_type' => array(
      'use hooks' => FALSE,
      'classes' => array(
        'class',
      ),
    ),
  );
}