You are here

public function UserManager::setFieldPicture in Open Social 8.4

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  2. 8 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  3. 8.2 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  4. 8.3 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  5. 8.5 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  6. 8.6 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  7. 8.7 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()
  8. 8.8 modules/custom/social_auth_extra/src/UserManager.php \Drupal\social_auth_extra\UserManager::setFieldPicture()

Set an instance of a field definition that contains picture.

Parameters

\Drupal\Core\Field\FieldDefinitionInterface $field: Field definition containing the picture.

Return value

null Returns null.

Overrides UserManagerInterface::setFieldPicture

File

modules/custom/social_auth_extra/src/UserManager.php, line 203

Class

UserManager
Class UserManager.

Namespace

Drupal\social_auth_extra

Code

public function setFieldPicture(FieldDefinitionInterface $field) {
  $this->fieldPicture = $field;
}