You are here

class RequestHelper in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/RequestHelper.php \Drupal\Core\Routing\RequestHelper
  2. 9 core/lib/Drupal/Core/Routing/RequestHelper.php \Drupal\Core\Routing\RequestHelper

Provides some helper methods for dealing with the request.

Hierarchy

Expanded class hierarchy of RequestHelper

1 file declares its use of RequestHelper
ImageStyle.php in core/modules/image/src/Entity/ImageStyle.php

File

core/lib/Drupal/Core/Routing/RequestHelper.php, line 10

Namespace

Drupal\Core\Routing
View source
class RequestHelper {

  /**
   * Returns whether the request is using a clean URL.
   *
   * A clean URL is one that does not include the script name. For example,
   * - http://example.com/node/1 is a clean URL.
   * - http://example.com/index.php/node/1 is not a clean URL.
   *
   * Unclean URLs are required on sites hosted by web servers that cannot be
   * configured to implicitly route URLs to index.php.
   *
   * @param \Symfony\Component\HttpFoundation\Request $request
   *   The request.
   *
   * @return bool
   *   TRUE if the request is using a clean URL.
   */
  public static function isCleanUrl(Request $request) {
    $base_url = $request
      ->getBaseUrl();
    return empty($base_url) || strpos($base_url, $request
      ->getScriptName()) === FALSE;
  }

}

Members