NodeUpdate7008.php

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/migrate/process/d6/NodeUpdate7008.php
  2. 8.9.x core/modules/node/src/Plugin/migrate/process/d6/NodeUpdate7008.php
  3. 10 core/modules/node/src/Plugin/migrate/process/d6/NodeUpdate7008.php

Namespace

Drupal\node\Plugin\migrate\process\d6

File

core/modules/node/src/Plugin/migrate/process/d6/NodeUpdate7008.php

View source
<?php

namespace Drupal\node\Plugin\migrate\process\d6;

use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;

/**
 * Split the 'administer nodes' permission from 'access content overview'.
 */
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.