public function ImceFolderTest::getConf in IMCE 8.2
Same name and namespace in other branches
- 8 tests/src/Kernel/ImceFolderTest.php \Drupal\Tests\imce\Kernel\ImceFolderTest::getConf()
Settings needed to run tests.
Overrides KernelTestBasePlugin::getConf
1 call to ImceFolderTest::getConf()
- ImceFolderTest::setUp in tests/
src/ Kernel/ ImceFolderTest.php
File
- tests/
src/ Kernel/ ImceFolderTest.php, line 117
Class
- ImceFolderTest
- Kernel tests for ImceFolder.
Namespace
Drupal\Tests\imce\KernelCode
public function getConf() {
return [
"extensions" => "*",
"maxsize" => '104857600.0',
"quota" => 0,
"maxwidth" => 0,
"maxheight" => 0,
"replace" => 0,
"thumbnail_style" => "",
"folders" => [
"." => [
"permissions" => [
"all" => TRUE,
],
],
],
"pid" => "admin",
"scheme" => "public",
"root_uri" => "public://",
"root_url" => "/sites/default/files",
"token" => "Vof6182Y9jbV1jFfCU0arR2XDI8qs-OfO8c-R-IbkTg",
];
}