You are here

public function ParagraphsBehaviorBase::settingsSummary in Paragraphs 8

Returns a short summary for the current behavior settings.

Parameters

\Drupal\paragraphs\Entity\Paragraph $paragraph: The paragraph.

Return value

string[] The plugin settings.

Overrides ParagraphsBehaviorInterface::settingsSummary

2 methods override ParagraphsBehaviorBase::settingsSummary()
TestBoldTextBehavior::settingsSummary in tests/modules/paragraphs_test/src/Plugin/paragraphs/Behavior/TestBoldTextBehavior.php
Returns a short summary for the current behavior settings.
TestTextColorBehavior::settingsSummary in tests/modules/paragraphs_test/src/Plugin/paragraphs/Behavior/TestTextColorBehavior.php
Returns a short summary for the current behavior settings.

File

src/ParagraphsBehaviorBase.php, line 111

Class

ParagraphsBehaviorBase

Namespace

Drupal\paragraphs

Code

public function settingsSummary(Paragraph $paragraph) {
  return [];
}