protected function ImageFieldTestBase::getLastFileId in Drupal 9
Same name and namespace in other branches
- 8 core/modules/image/tests/src/Functional/ImageFieldTestBase.php \Drupal\Tests\image\Functional\ImageFieldTestBase::getLastFileId()
- 10 core/modules/image/tests/src/Functional/ImageFieldTestBase.php \Drupal\Tests\image\Functional\ImageFieldTestBase::getLastFileId()
Retrieves the fid of the last inserted file.
1 call to ImageFieldTestBase::getLastFileId()
- ImageOnTranslatedEntityTest::testSyncedImages in core/modules/ image/ tests/ src/ Functional/ ImageOnTranslatedEntityTest.php 
- Tests synced file fields on translated nodes.
File
- core/modules/ image/ tests/ src/ Functional/ ImageFieldTestBase.php, line 125 
Class
- ImageFieldTestBase
- This class provides methods specifically for testing Image's field handling.
Namespace
Drupal\Tests\image\FunctionalCode
protected function getLastFileId() {
  return (int) \Drupal::entityQueryAggregate('file')
    ->accessCheck(FALSE)
    ->aggregate('fid', 'max')
    ->execute()[0]['fid_max'];
}