NodeUpdate7008.php
Same filename in other branches
Namespace
Drupal\node\Plugin\migrate\process\d6File
-
core/
modules/ node/ src/ Plugin/ migrate/ process/ d6/ NodeUpdate7008.php
View source
<?php
namespace Drupal\node\Plugin\migrate\process\d6;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;
/**
* Split the 'administer nodes' permission from 'access content overview'.
*
* @MigrateProcessPlugin(
* id = "node_update_7008"
* )
*/
class NodeUpdate7008 extends ProcessPluginBase {
/**
* {@inheritdoc}
*
* Split the 'administer nodes' permission from 'access content overview'.
*/
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
if ($value === 'administer nodes') {
return [
$value,
'access content overview',
];
}
return $value;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
NodeUpdate7008 | Split the 'administer nodes' permission from 'access content overview'. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.