You are here

public function ParagraphsFrontendUIController::addBelow in Paragraphs frontend ui 8.2

Select a paragraph type.

1 string reference to 'ParagraphsFrontendUIController::addBelow'
paragraphs_frontend_ui.routing.yml in ./paragraphs_frontend_ui.routing.yml
paragraphs_frontend_ui.routing.yml

File

src/Controller/ParagraphsFrontendUIController.php, line 163

Class

ParagraphsFrontendUIController
Controller for up and down actions.

Namespace

Drupal\paragraphs_frontend_ui\Controller

Code

public function addBelow($paragraph, $js = 'nojs') {
  $form = \Drupal::formBuilder()
    ->getForm('Drupal\\paragraphs_frontend_ui\\Form\\ParagraphsFrontendUIAddBelow', $paragraph);
  return $form;
}