You are here

function cer_features_ignore in Corresponding Entity References 7.3

Implements hook_features_ignore().

1 call to cer_features_ignore()
cer_features_override_ignore in ./cer.module
Implements hook_features_override_ignore().

File

./cer.module, line 308

Code

function cer_features_ignore($component) {
  $ignores = array();
  if ($component == 'cer') {
    $ignores['wrapper'] = 0;
  }
  return $ignores;
}