You are here

CasUser.php in CAS 2.x

Same filename and directory in other branches
  1. 8 src/Plugin/migrate/source/d7/CasUser.php

File

src/Plugin/migrate/source/d7/CasUser.php
View source
<?php

namespace Drupal\cas\Plugin\migrate\source\d7;

use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;

/**
 * Drupal authmap source from database.
 *
 * @MigrateSource(
 *   id = "d7_cas_user",
 *   source_module = "cas"
 * )
 */
class CasUser extends DrupalSqlBase {

  /**
   * {@inheritdoc}
   */
  public function query() {
    return $this
      ->select('cas_user', 'c')
      ->fields('c');
  }

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'uid' => $this
        ->t('The user identifier.'),
      'cas_name' => $this
        ->t('Unique authentication name.'),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    return [
      'uid' => [
        'type' => 'integer',
      ],
    ];
  }

}

Classes

Namesort descending Description
CasUser Drupal authmap source from database.