groups/modules/commons/commons_bw/commons_bw.features.inc
Marton Kiss de51d9b4f0 Upgrade commons modules to upstream version
Upgrade the commons modules to version 3.15, see release notes
here: https://www.drupal.org/node/2292227

The upgrade contains the following custom patches:
- 0001-utility-links-block-install-theme.patch

Change-Id: Ia3f385d56171d3ea0983fb2c39916dd176e0af6d
2014-07-21 15:34:31 +02:00

25 lines
456 B
PHP

<?php
/**
* @file
* commons_bw.features.inc
*/
/**
* Implements hook_ctools_plugin_directory().
*/
function commons_bw_ctools_plugin_directory($module, $plugin) {
if ($module == 'ctools' && $plugin == 'content_types') {
return 'plugins/' . $plugin;
}
}
/**
* Implements hook_views_api().
*/
function commons_bw_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'commons_bw') . '/includes/views',
);
}