You are here

Username.php in Display Suite 8.4

File

src/Plugin/DsField/User/Username.php
View source
<?php

namespace Drupal\ds\Plugin\DsField\User;

use Drupal\ds\Plugin\DsField\Title;

/**
 * Plugin that renders the username.
 *
 * @DsField(
 *   id = "username",
 *   title = @Translation("Username"),
 *   entity_type = "user",
 *   provider = "user"
 * )
 */
class Username extends Title {

  /**
   * {@inheritdoc}
   */
  public function entityRenderKey() {
    return 'name';
  }

}

Classes

Namesort descending Description
Username Plugin that renders the username.