function HtmxRequestInfoTrait::getHtmxPrompt

Retrieves the prompt from an HTMX request header.

Return value

string The value of the 'HX-Prompt' header, or an empty string if not set.

1 call to HtmxRequestInfoTrait::getHtmxPrompt()
HtmxRequestInfoTest::testGetHtmxPrompt in core/tests/Drupal/Tests/Core/Htmx/HtmxRequestInfoTest.php
Tests the getHtmxPrompt method.

File

core/lib/Drupal/Core/Htmx/HtmxRequestInfoTrait.php, line 68

Class

HtmxRequestInfoTrait
Provides methods for getting information about the HTMX request.

Namespace

Drupal\Core\Htmx

Code

protected function getHtmxPrompt() : string {
  return $this->getRequest()->headers
    ->get('HX-Prompt', '');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.