public function CommentTestBase::setCommentForm in Drupal 9
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Functional/CommentTestBase.php \Drupal\Tests\comment\Functional\CommentTestBase::setCommentForm()
Sets the value governing whether the comment form is on its own page.
Parameters
bool $enabled: TRUE if the comment form should be displayed on the same page as the comments; FALSE if it should be displayed on its own page.
string $field_name: (optional) Field name through which the comment should be posted. Defaults to 'comment'.
16 calls to CommentTestBase::setCommentForm()
- CommentAttributesTest::setUp in core/
modules/ rdf/ tests/ src/ Functional/ CommentAttributesTest.php - CommentInterfaceTest::setUp in core/
modules/ comment/ tests/ src/ Functional/ CommentInterfaceTest.php - Set up comments to have subject and preview disabled.
- CommentInterfaceTest::testCommentInterface in core/
modules/ comment/ tests/ src/ Functional/ CommentInterfaceTest.php - Tests the comment interface.
- CommentNodeAccessTest::testThreadedCommentView in core/
modules/ comment/ tests/ src/ Functional/ CommentNodeAccessTest.php - Tests that threaded comments can be viewed.
- CommentPagerTest::testCommentNewPageIndicator in core/
modules/ comment/ tests/ src/ Functional/ CommentPagerTest.php - Tests calculation of first page with new comment.
File
- core/
modules/ comment/ tests/ src/ Functional/ CommentTestBase.php, line 292
Class
- CommentTestBase
- Provides setup and helper methods for comment tests.
Namespace
Drupal\Tests\comment\FunctionalCode
public function setCommentForm($enabled, $field_name = 'comment') {
$this
->setCommentSettings('form_location', $enabled ? CommentItemInterface::FORM_BELOW : CommentItemInterface::FORM_SEPARATE_PAGE, 'Comment controls ' . ($enabled ? 'enabled' : 'disabled') . '.', $field_name);
}