function LinkOptions::transform

Same name and namespace in other branches
  1. 9 core/modules/menu_link_content/src/Plugin/migrate/process/LinkOptions.php \Drupal\menu_link_content\Plugin\migrate\process\LinkOptions::transform()
  2. 10 core/modules/menu_link_content/src/Plugin/migrate/process/LinkOptions.php \Drupal\menu_link_content\Plugin\migrate\process\LinkOptions::transform()

Overrides ProcessPluginBase::transform

File

core/modules/menu_link_content/src/Plugin/migrate/process/LinkOptions.php, line 33

Class

LinkOptions
Converts links options.

Namespace

Drupal\menu_link_content\Plugin\migrate\process

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    if (isset($value['query'])) {
        // If the query parameters are stored as a string (as in D6), convert it
        // into an array.
        if (is_string($value['query'])) {
            parse_str($value['query'], $old_query);
        }
        else {
            $old_query = $value['query'];
        }
        $value['query'] = $old_query;
    }
    return $value;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.