You are here

public function ShortcutSetUsers::query in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php, line 24
Contains \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers.

Class

ShortcutSetUsers
Drupal 7 shortcut_set_users source from database.

Namespace

Drupal\shortcut\Plugin\migrate\source\d7

Code

public function query() {
  return $this
    ->select('shortcut_set_users', 'ssu')
    ->fields('ssu');
}