You are here

function ga_push_form_validate_get_logged_forms in GA Push 7

Same name and namespace in other branches
  1. 8 modules/form_validate/ga_push_form_validate.module \ga_push_form_validate_get_logged_forms()

Returns all logged forms.

1 call to ga_push_form_validate_get_logged_forms()
ga_push_form_validate_form_alter in modules/form_validate/ga_push_form_validate.module
Implements hook_form_alter().

File

modules/form_validate/ga_push_form_validate.module, line 82
Drupal Module: GA Push (form validate).

Code

function ga_push_form_validate_get_logged_forms() {
  $forms = variable_get('ga_push_form_validate_forms', '');
  return array_map('trim', explode("\n", $forms));
}