webform_panels.module in Webform Panels 7
Main file for the module.
We define the content type plugins directory for this module.
File
webform_panels.moduleView source
<?php
/**
* @file
* Main file for the module.
*
* We define the content type plugins directory for this module.
*/
/**
* Implements hook_ctools_plugin_directory().
*
* Tell ctools where to look for our plugin files.
*/
function webform_panels_ctools_plugin_directory($owner, $plugin_type) {
if ($owner == 'ctools' && $plugin_type == 'content_types') {
return 'plugins/' . $plugin_type;
}
}
Functions
Name![]() |
Description |
---|---|
webform_panels_ctools_plugin_directory | Implements hook_ctools_plugin_directory(). |