function mvf_ctools_plugin_directory in Measured Value Field 7
Implements hook_ctools_plugin_directory().
File
- ./
mvf.module, line 1142 - Define a field type of measured value.
Code
function mvf_ctools_plugin_directory($owner, $plugin_type) {
switch ($owner) {
case 'mvf':
switch ($plugin_type) {
case 'unit_suggesters':
return 'plugins/' . $plugin_type;
}
break;
}
}