public function ShortcutSetUsers::query in Drupal 10
Same name and namespace in other branches
- 8 core/modules/shortcut/src/Plugin/migrate/source/d7/ShortcutSetUsers.php \Drupal\shortcut\Plugin\migrate\source\d7\ShortcutSetUsers::query()
- 9 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 25
Class
- ShortcutSetUsers
- Drupal 7 shortcut_set_users source from database.
Namespace
Drupal\shortcut\Plugin\migrate\source\d7Code
public function query() {
return $this
->select('shortcut_set_users', 'ssu')
->fields('ssu');
}