You are here

public function GoogleAdwordsPathTracker::__construct in Google AdWords Conversion Tracking 8

GoogleAdwordsPathTracker constructor.

Parameters

\Drupal\Core\Cache\CacheBackendInterface $cache_data:

\Drupal\Core\Entity\EntityTypeManager $entity_type_manager:

\Drupal\Core\Routing\CurrentRouteMatch $current_route_match:

\Drupal\google_adwords\GoogleAdwordsTracker $google_adwords_tracker:

File

modules/google_adwords_path/src/GoogleAdwordsPathTracker.php, line 91
Contains Drupal\google_adwords_path\GoogleAdwordsPathTracker.

Class

GoogleAdwordsPathTracker
Class GoogleAdwordsPathTracker.

Namespace

Drupal\google_adwords_path

Code

public function __construct(CacheBackendInterface $cache_data, EntityTypeManager $entity_type_manager, CurrentRouteMatch $current_route_match, GoogleAdwordsTracker $google_adwords_tracker) {
  $this->cache_data = $cache_data;
  $this->entity_type_manager = $entity_type_manager;
  $this->current_route_match = $current_route_match;
  $this->google_adwords_tracker = $google_adwords_tracker;
}