protected function BlockContentTestBase::createBlockContent in Drupal 9
Same name in this branch
- 9 core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::createBlockContent()
- 9 core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase::createBlockContent()
Same name and namespace in other branches
- 8 core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::createBlockContent()
- 10 core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::createBlockContent()
Creates a custom block.
Parameters
bool|string $title: (optional) Title of block. When no value is given uses a random name. Defaults to FALSE.
string $bundle: (optional) Bundle name. Defaults to 'basic'.
bool $save: (optional) Whether to save the block. Defaults to TRUE.
Return value
\Drupal\block_content\Entity\BlockContent Created custom block.
9 calls to BlockContentTestBase::createBlockContent()
- BlockContentContextualLinksTest::testBlockContentContextualLinks in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentContextualLinksTest.php - Tests contextual links.
- BlockContentCreationTest::testConfigDependencies in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentCreationTest.php - Tests placed content blocks create a dependency in the block placement.
- BlockContentCreationTest::testFailedBlockCreation in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentCreationTest.php - Verifies that a transaction rolls back the failed creation.
- BlockContentPageViewTest::testPageEdit in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentPageViewTest.php - Checks block edit and fallback functionality.
- BlockContentRevisionsTest::setUp in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentRevisionsTest.php - Sets the test up.
File
- core/
modules/ block_content/ tests/ src/ Functional/ BlockContentTestBase.php, line 78
Class
- BlockContentTestBase
- Sets up block content types.
Namespace
Drupal\Tests\block_content\FunctionalCode
protected function createBlockContent($title = FALSE, $bundle = 'basic', $save = TRUE) {
$title = $title ?: $this
->randomMachineName();
$block_content = BlockContent::create([
'info' => $title,
'type' => $bundle,
'langcode' => 'en',
]);
if ($block_content && $save === TRUE) {
$block_content
->save();
}
return $block_content;
}