public function AliasStorage::pathHasMatchingAlias in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Path/AliasStorage.php \Drupal\Core\Path\AliasStorage::pathHasMatchingAlias()
Check if any alias exists starting with $initial_substring.
Parameters
string $initial_substring: Initial path substring to test against.
Return value
bool TRUE if any alias exists, FALSE otherwise.
Overrides AliasStorageInterface::pathHasMatchingAlias
File
- core/
lib/ Drupal/ Core/ Path/ AliasStorage.php, line 278 - Contains \Drupal\Core\Path\AliasStorage.
Class
- AliasStorage
- Provides a class for CRUD operations on path aliases.
Namespace
Drupal\Core\PathCode
public function pathHasMatchingAlias($initial_substring) {
$query = $this->connection
->select('url_alias', 'u');
$query
->addExpression(1);
return (bool) $query
->condition('u.source', $this->connection
->escapeLike($initial_substring) . '%', 'LIKE')
->range(0, 1)
->execute()
->fetchField();
}