You are here

public function Role::query in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/modules/user/src/Plugin/migrate/source/d6/Role.php \Drupal\user\Plugin\migrate\source\d6\Role::query()
  2. 8.0 core/modules/user/src/Plugin/migrate/source/d7/Role.php \Drupal\user\Plugin\migrate\source\d7\Role::query()
Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/migrate/source/d6/Role.php \Drupal\user\Plugin\migrate\source\d6\Role::query()

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

core/modules/user/src/Plugin/migrate/source/d6/Role.php, line 32
Contains \Drupal\user\Plugin\migrate\source\d6\Role.

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', array(
    'rid',
    'name',
  ))
    ->orderBy('rid');
  return $query;
}