You are here

private function InfoForm::isAjax in Advanced CSS/JS Aggregation 8.2

Checks if the form was submitted by AJAX.

Return value

bool TRUE if the form was submitted via AJAX, otherwise FALSE.

1 call to InfoForm::isAjax()
InfoForm::getFileInfoSubmit in src/Form/InfoForm.php
Display file info in a drupal message.

File

src/Form/InfoForm.php, line 381

Class

InfoForm
View AdvAgg information for this site.

Namespace

Drupal\advagg\Form

Code

private function isAjax() {
  $request = $this->requestStack
    ->getCurrentRequest();
  if ($request->query
    ->has(FormBuilderInterface::AJAX_FORM_REQUEST)) {
    return TRUE;
  }
  return FALSE;
}