function flag_abuse_features_pipe_flag_alter in Flag Abuse 7.2
Implements hook_features_pipe_flag_alter().
File
- ./
flag_abuse.module, line 48
Code
function flag_abuse_features_pipe_flag_alter(&$pipe, $data, $export) {
foreach ($data as $flag_name) {
if (flag_abuse_is_abuse_flag($flag_name)) {
$pipe['dependencies'][] = 'flag_abuse';
break;
}
}
}