You are here

function eck_revision_ctools_plugin_directory in ECK Revision 7

Implements hook_ctools_plugin_directory() to let the system know where our property_behavior plugins are.

File

./eck_revision.module, line 12
ECK Revision module.

Code

function eck_revision_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'eck' && $plugin_type == 'property_behavior') {
    return 'plugins/property_behavior';
  }
}