You are here

public function PiwikVisibilityPages::transform in Piwik Web Analytics 8

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/PiwikVisibilityPages.php, line 82

Class

PiwikVisibilityPages
Prefixes paths with a slash.

Namespace

Drupal\piwik\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;
}