You are here

public function Drupal8::userPictureFilename in Realistic Dummy Content 8.2

Same name and namespace in other branches
  1. 7.2 api/src/Framework/Drupal8.php \Drupal\realistic_dummy_content_api\Framework\Drupal8::userPictureFilename()

File

api/src/Framework/Drupal8.php, line 22

Class

Drupal8
Drupal 8-specific code.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function userPictureFilename($user) {
  $value = $user
    ->get('user_picture')
    ->getValue();
  $id = $value[0]['target_id'];
  $file = file_load($id);
  return $file
    ->getFileUri();
}