You are here

public function GoogleAnalyticsVisibilityPages::transform in Google Analytics 4.x

Same name and namespace in other branches
  1. 8.3 src/Plugin/migrate/process/GoogleAnalyticsVisibilityPages.php \Drupal\google_analytics\Plugin\migrate\process\GoogleAnalyticsVisibilityPages::transform()
  2. 8.2 src/Plugin/migrate/process/GoogleAnalyticsVisibilityPages.php \Drupal\google_analytics\Plugin\migrate\process\GoogleAnalyticsVisibilityPages::transform()

Performs the associated process.

Parameters

mixed $value: The value to be transformed.

\Drupal\migrate\MigrateExecutableInterface $migrate_executable: The migration in which this process is being executed.

\Drupal\migrate\Row $row: The row from the source to process. Normally, just transforming the value is adequate but very rarely you might need to change two columns at the same time or something like that.

string $destination_property: The destination property currently worked on. This is only used together with the $row above.

Return value

string|array The newly transformed value.

Overrides ProcessPluginBase::transform

File

src/Plugin/migrate/process/GoogleAnalyticsVisibilityPages.php, line 85

Class

GoogleAnalyticsVisibilityPages
Prefixes paths with a slash.

Namespace

Drupal\google_analytics\Plugin\migrate\process

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
  list($old_visibility, $pages) = $value;
  $request_path_pages = '';
  if ($pages) {

    // 2 == BLOCK_VISIBILITY_PHP in Drupal 6 and 7.
    if ($old_visibility == 2) {

      // If the PHP module is present, migrate the visibility code unaltered.
      if ($this->moduleHandler
        ->moduleExists('php')) {
        $request_path_pages = $pages;
      }
      elseif ($this->skipPHP) {
        throw new MigrateSkipRowException();
      }
    }
    else {
      $paths = preg_split("(\r\n?|\n)", $pages);
      foreach ($paths as $key => $path) {
        $paths[$key] = $path === '<front>' ? $path : '/' . ltrim($path, '/');
      }
      $request_path_pages = implode("\n", $paths);
    }
  }
  return $request_path_pages;
}