public function UserPictureInstance::fields in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/Plugin/migrate/source/UserPictureInstance.php \Drupal\user\Plugin\migrate\source\UserPictureInstance::fields()
Returns available fields on the source.
Return value
array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.
Overrides MigrateSourceInterface::fields
File
- core/
modules/ user/ src/ Plugin/ migrate/ source/ UserPictureInstance.php, line 43
Class
- UserPictureInstance
- User picture field instance source from database.
Namespace
Drupal\user\Plugin\migrate\sourceCode
public function fields() {
return [
'file_directory' => 'The directory to store images..',
'max_filesize' => 'The maximum allowed file size in KBs.',
'max_resolution' => "The maximum resolution.",
];
}