You are here

public static function LaunchExportForm::getRequestParam in Content Synchronizer 3.x

Return request.

Return value

mixed|\Symfony\Component\HttpFoundation\Request The value of the param.

1 call to LaunchExportForm::getRequestParam()
LaunchExportForm::addDownloadIframe in src/Form/LaunchExportForm.php
Add a donwload hidden iframe.

File

src/Form/LaunchExportForm.php, line 197

Class

LaunchExportForm
Launch Export Form.

Namespace

Drupal\content_synchronizer\Form

Code

public static function getRequestParam() {
  return \Drupal::request()
    ->get(EntityExportFormBuilder::ARCHIVE_PARAMS);
}