function CommentTestBase::setCommentPreview
Sets the value governing the previewing mode for the comment form.
Parameters
int $mode: The preview mode: DRUPAL_DISABLED, DRUPAL_OPTIONAL or DRUPAL_REQUIRED.
string $field_name: (optional) Field name through which the comment should be posted. Defaults to 'comment'.
16 calls to CommentTestBase::setCommentPreview()
- 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.
 - CommentPagerTest::testCommentOrderingThreading in core/
modules/ comment/ tests/ src/ Functional/ CommentPagerTest.php  - Tests comment ordering and threading.
 
File
- 
              core/
modules/ comment/ tests/ src/ Functional/ CommentTestBase.php, line 268  
Class
- CommentTestBase
 - Provides setup and helper methods for comment tests.
 
Namespace
Drupal\Tests\comment\FunctionalCode
protected function setCommentPreview($mode, $field_name = 'comment') {
  switch ($mode) {
    case DRUPAL_DISABLED:
      $mode_text = 'disabled';
      break;
    case DRUPAL_OPTIONAL:
      $mode_text = 'optional';
      break;
    case DRUPAL_REQUIRED:
      $mode_text = 'required';
      break;
  }
  $this->setCommentSettings('preview', $mode, new FormattableMarkup('Comment preview @mode_text.', [
    '@mode_text' => $mode_text,
  ]), $field_name);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.