select('shortcut_set_users', 'ssu')->fields('ssu'); } /** * {@inheritdoc} */ public function fields() { return [ 'uid' => $this->t('The users.uid for this set.'), 'set_name' => $this->t('The shortcut_set.set_name that will be displayed for this user.'), ]; } /** * {@inheritdoc} */ public function getIds() { return [ 'set_name' => [ 'type' => 'string', ], 'uid' => [ 'type' => 'integer', ], ]; } }