You are here

function purl_ctools_plugin_api in Persistent URL 6

Same name and namespace in other branches
  1. 7 purl.module \purl_ctools_plugin_api()

Implementation of hook_plugin_ctools_api().

File

./purl.module, line 25

Code

function purl_ctools_plugin_api($owner, $api) {
  if ($owner == 'purl' && $api == 'processor') {
    return array(
      'version' => 1,
      'path' => 'includes',
    );
  }
}