function flag_abuse_get_abuse_flags in Flag Abuse 7.2
Get the machine names of abuse flags.
Return value
array The machine names of abuse flags.
3 calls to flag_abuse_get_abuse_flags()
- flag_abuse_is_abuse_flag in ./
flag_abuse.module - Determine if a flag is an abuse flag.
- flag_abuse_settings_form in includes/
flag_abuse.admin.inc - Configuration settings form.
- flag_abuse_views_default_views in includes/
flag_abuse.views_default.inc - Implements hook_views_default_views().
File
- ./
flag_abuse.module, line 76
Code
function flag_abuse_get_abuse_flags() {
return variable_get('flag_abuse_flags', array(
'abuse_node',
'abuse_comment',
'abuse_user',
));
}