function CommentTestBase::setCommentSettings

Same name in this branch
  1. 8.9.x core/modules/comment/src/Tests/CommentTestBase.php \Drupal\comment\Tests\CommentTestBase::setCommentSettings()
Same name and namespace in other branches
  1. 11.x core/modules/comment/tests/src/Functional/CommentTestBase.php \Drupal\Tests\comment\Functional\CommentTestBase::setCommentSettings()
  2. 10 core/modules/comment/tests/src/Functional/CommentTestBase.php \Drupal\Tests\comment\Functional\CommentTestBase::setCommentSettings()
  3. 9 core/modules/comment/tests/src/Functional/CommentTestBase.php \Drupal\Tests\comment\Functional\CommentTestBase::setCommentSettings()

Sets a comment settings variable for the article content type.

Parameters

string $name: Name of variable.

string $value: Value of variable.

string $message: Status message to display.

string $field_name: (optional) Field name through which the comment should be posted. Defaults to 'comment'.

1 call to CommentTestBase::setCommentSettings()
CommentAttributesTest::setUp in core/modules/rdf/tests/src/Functional/CommentAttributesTest.php

File

core/modules/comment/tests/src/Functional/CommentTestBase.php, line 333

Class

CommentTestBase
Provides setup and helper methods for comment tests.

Namespace

Drupal\Tests\comment\Functional

Code

public function setCommentSettings($name, $value, $message, $field_name = 'comment') {
  $field = FieldConfig::loadByName('node', 'article', $field_name);
  $field->setSetting($name, $value);
  $field->save();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.