protected function BambooTwigRenderTest::createFile in Bamboo Twig 8.4
Same name and namespace in other branches
- 8.5 tests/src/Functional/BambooTwigRenderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigRenderTest::createFile()
- 8.2 tests/src/Functional/BambooTwigRenderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigRenderTest::createFile()
- 8.3 tests/src/Functional/BambooTwigRenderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigRenderTest::createFile()
Creates and gets test image file.
Return value
\Drupal\file\FileInterface File object.
1 call to BambooTwigRenderTest::createFile()
- BambooTwigRenderTest::setUp in tests/
src/ Functional/ BambooTwigRenderTest.php
File
- tests/
src/ Functional/ BambooTwigRenderTest.php, line 344
Class
- BambooTwigRenderTest
- Tests Renders twig filters and functions.
Namespace
Drupal\Tests\bamboo_twig\FunctionalCode
protected function createFile() {
/** @var \Drupal\Component\PhpStorage\FileStorage $fileStorage */
$fileStorage = $this->container
->get('entity_type.manager')
->getStorage('file');
file_unmanaged_copy(drupal_get_path('module', 'bamboo_twig_test') . '/files/antistatique.jpg', PublicStream::basePath());
$file = $fileStorage
->create([
'uri' => 'public://antistatique.jpg',
'status' => FILE_STATUS_PERMANENT,
]);
$file
->save();
return $file;
}