You are here

function google_adwords_path_get_all_codes in Google AdWords Conversion Tracking 7.2

Get all Google Adwords unique codes after filtering for the current path.

1 call to google_adwords_path_get_all_codes()
google_adwords_path_admin_page in modules/google_adwords_path/google_adwords_path.admin.inc
Admin page listing down all Google Adwords Path conversion codes.

File

modules/google_adwords_path/google_adwords_path.module, line 117
Module file for the Google Adwords Path Submodule.

Code

function google_adwords_path_get_all_codes() {
  $codes =& drupal_static(__FUNCTION__);
  if (!$codes) {
    $codes = _google_adwords_path_load_codes();
  }
  return $codes;
}