PiwikCustomVars.php in Piwik Web Analytics 8
File
src/Plugin/migrate/process/PiwikCustomVars.php
View source
<?php
namespace Drupal\piwik\Plugin\migrate\process;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;
class PiwikCustomVars extends ProcessPluginBase {
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
list($piwik_custom_vars) = $value;
return isset($piwik_custom_vars['slots']) ? $piwik_custom_vars['slots'] : [];
}
}