
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
25 lines
456 B
PHP
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',
|
|
);
|
|
}
|