Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Path/AliasManagerInterface.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?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); }