function lightning_layout_module_implements_alter in Lightning Layout 8.2
Implements hook_module_implements_alter().
@todo Remove when we require Panels 4.5 or later, since it implements and tests this functionality itself.
File
- ./
lightning_layout.module, line 235 - Contains layout functionality for Lightning.
Code
function lightning_layout_module_implements_alter(array &$implementations, $hook) {
if ($hook === 'layout_alter') {
unset($implementations['panels']);
}
}