function FileTest::makeCurrentUserFileOwner
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
- 8.9.x core/modules/jsonapi/tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
- 11.x core/modules/jsonapi/tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
Makes the current user the file owner.
1 call to FileTest::makeCurrentUserFileOwner()
- FileTest::setUpAuthorization in core/
modules/ jsonapi/ tests/ src/ Functional/ FileTest.php - Sets up the necessary authorization.
File
-
core/
modules/ jsonapi/ tests/ src/ Functional/ FileTest.php, line 96
Class
- FileTest
- JSON:API integration test for the "File" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function makeCurrentUserFileOwner() {
$account = User::load(2);
$this->entity
->setOwnerId($account->id());
$this->entity
->setOwner($account);
$this->entity
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.