function Role::query

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/user/src/Plugin/migrate/source/d6/Role.php, line 33

Class

Role
Drupal 6 role source from database.

Namespace

Drupal\user\Plugin\migrate\source\d6

Code

public function query() {
  $query = $this->select('role', 'r')
    ->fields('r', [
    'rid',
    'name',
  ])
    ->orderBy('r.rid');
  return $query;
}

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