function FileFieldTestBase::removeNodeFile

Removes a file from a node.

Note that if replacing a file, it must first be removed then added again.

File

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

Class

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

Namespace

Drupal\file\Tests

Code

public function removeNodeFile($nid, $new_revision = TRUE) {
  $edit = [
    'revision' => (string) (int) $new_revision,
  ];
  $this->drupalPostForm('node/' . $nid . '/edit', [], t('Remove'));
  $this->drupalPostForm(NULL, $edit, t('Save'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.