Same filename in this branch
  1. 10 core/modules/shortcut/src/Entity/Shortcut.php
  2. 10 core/modules/shortcut/src/Plugin/migrate/source/d7/Shortcut.php
Same filename and directory in other branches
  1. 8.9.x core/modules/shortcut/src/Plugin/migrate/source/d7/Shortcut.php
  2. 9 core/modules/shortcut/src/Plugin/migrate/source/d7/Shortcut.php

Namespace

Drupal\shortcut\Plugin\migrate\source\d7

File

core/modules/shortcut/src/Plugin/migrate/source/d7/Shortcut.php
View source
<?php

namespace Drupal\shortcut\Plugin\migrate\source\d7;

use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;

// cspell:ignore mlid

/**
 * Drupal 7 shortcut links source from database.
 *
 * For available configuration keys, refer to the parent classes.
 *
 * @see \Drupal\migrate\Plugin\migrate\source\SqlBase
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "d7_shortcut",
 *   source_module = "shortcut"
 * )
 */
class Shortcut extends DrupalSqlBase {

  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this
      ->select('menu_links', 'ml')
      ->fields('ml', [
      'mlid',
      'menu_name',
      'link_path',
      'link_title',
      'weight',
    ])
      ->condition('hidden', '0')
      ->condition('menu_name', 'shortcut-set-%', 'LIKE')
      ->orderBy('ml.mlid');
  }

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'mlid' => $this
        ->t("The menu.mlid primary key for this menu link (= shortcut link)."),
      'menu_name' => $this
        ->t("The menu name (= set name) for this shortcut link."),
      'link_path' => $this
        ->t("The link for this shortcut."),
      'link_title' => $this
        ->t("The title for this shortcut."),
      'weight' => $this
        ->t("The weight for this shortcut"),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids['mlid']['type'] = 'integer';
    return $ids;
  }

}

Classes

Namesort descending Description
Shortcut Drupal 7 shortcut links source from database.