You are here

public function FileFieldTestBase::uploadNodeFile in Drupal 8

Same name in this branch
  1. 8 core/modules/file/src/Tests/FileFieldTestBase.php \Drupal\file\Tests\FileFieldTestBase::uploadNodeFile()
  2. 8 core/modules/file/tests/src/Functional/FileFieldTestBase.php \Drupal\Tests\file\Functional\FileFieldTestBase::uploadNodeFile()

Uploads a file to a node.

Parameters

\Drupal\file\FileInterface $file: The File to be uploaded.

string $field_name: The name of the field on which the files should be saved.

$nid_or_type: A numeric node id to upload files to an existing node, or a string indicating the desired bundle for a new node.

bool $new_revision: The revision number.

array $extras: Additional values when a new node is created.

Return value

int The node id.

File

core/modules/file/src/Tests/FileFieldTestBase.php, line 173

Class

FileFieldTestBase
Provides methods specifically for testing File module's field handling.

Namespace

Drupal\file\Tests

Code

public function uploadNodeFile(FileInterface $file, $field_name, $nid_or_type, $new_revision = TRUE, array $extras = []) {
  return $this
    ->uploadNodeFiles([
    $file,
  ], $field_name, $nid_or_type, $new_revision, $extras);
}