You are here

function ga_push_get_method in GA Push 7

Same name and namespace in other branches
  1. 8 ga_push.module \ga_push_get_method()

Get GA Push method info.

Parameters

string $key: Method key.

1 call to ga_push_get_method()
ga_push_add in ./ga_push.module
Add a new google analytics tracking push.

File

./ga_push.module, line 579
Drupal Module: GA Push.

Code

function ga_push_get_method($key) {
  $methods = ga_push_get_methods();
  return isset($methods[$key]) ? $methods[$key] : NULL;
}