Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
46.67% |
7 / 15 |
BlockRegion | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
14.43 | |
46.67% |
7 / 15 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
create | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 4 |
|||
transform | |
0.00% |
0 / 1 |
4.03 | |
87.50% |
7 / 8 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\block\Plugin\migrate\process\BlockRegion. | |
*/ | |
namespace Drupal\block\Plugin\migrate\process; | |
use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
use Drupal\migrate\MigrateExecutableInterface; | |
use Drupal\migrate\ProcessPluginBase; | |
use Drupal\migrate\Row; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
/** | |
* @MigrateProcessPlugin( | |
* id = "block_region" | |
* ) | |
*/ | |
class BlockRegion extends ProcessPluginBase implements ContainerFactoryPluginInterface { | |
/** | |
* List of regions, keyed by theme. | |
* | |
* @var array[] | |
*/ | |
protected $regions; | |
/** | |
* Constructs a BlockRegion plugin instance. | |
* | |
* @param array $configuration | |
* The plugin configuration. | |
* @param string $plugin_id | |
* The plugin ID. | |
* @param mixed $plugin_definition | |
* The plugin definition. | |
* @param array $regions | |
* Array of region maps, keyed by theme. | |
*/ | |
public function __construct(array $configuration, $plugin_id, $plugin_definition, array $regions) { | |
parent::__construct($configuration, $plugin_id, $plugin_definition); | |
$this->regions = $regions; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { | |
$regions = array(); | |
foreach ($container->get('theme_handler')->listInfo() as $key => $theme) { | |
$regions[$key] = $theme->info['regions']; | |
} | |
return new static($configuration, $plugin_id, $plugin_definition, $regions); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) { | |
// Set the destination region, based on the source region and theme as well | |
// as the current destination default theme. | |
list($region, $source_theme, $destination_theme) = $value; | |
// Theme is the same on both source and destination, so ensure that the | |
// region exists in the destination theme. | |
if (strtolower($source_theme) == strtolower($destination_theme)) { | |
if (isset($this->regions[$destination_theme][$region])) { | |
return $region; | |
} | |
} | |
// If the source and destination theme are different, try to use the | |
// mappings defined in the configuration. | |
$region_map = $this->configuration['region_map']; | |
if (isset($region_map[$region])) { | |
return $region_map[$region]; | |
} | |
// Oh well, we tried. Put the block in the main content region. | |
return 'content'; | |
} | |
} |