public function ParagraphsLockablePlugin::view

Extends the paragraph render array with behavior.

Parameters

array &$build: A renderable array representing the paragraph. The module may add elements to $build prior to rendering. The structure of $build is a renderable array as expected by drupal_render().

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

\Drupal\Core\Entity\Display\EntityViewDisplayInterface $display: The entity view display holding the display options configured for the entity components.

string $view_mode: The view mode the entity is rendered in.

Overrides ParagraphsBehaviorInterface::view

File

paragraphs_collection/src/Plugin/paragraphs/Behavior/ParagraphsLockablePlugin.php, line 81

Class

ParagraphsLockablePlugin
Provides a Paragraphs Lockable plugin.

Namespace

Drupal\paragraphs_collection\Plugin\paragraphs\Behavior

Code

public function view(array &$build, Paragraph $paragraphs_entity, EntityViewDisplayInterface $display, $view_mode) {

  // This implementation of view does nothing.
  // As this behavior affects the back end and not the display to the user.
}