Skip to content
Snippets Groups Projects
Commit 8a851e1e authored by catch's avatar catch
Browse files

Issue #3110064 by idebr, chandrashekhar_srijan, Vidushi Mehta, ckng,...

Issue #3110064 by idebr, chandrashekhar_srijan, Vidushi Mehta, ckng, benjifisher, mikelutz: Migrate empty, <nolink> and <none> link field

(cherry picked from commit 9ca47a6c)
parent bf789fd1
No related branches found
No related tags found
No related merge requests found
......@@ -60,10 +60,15 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition
*/
protected function canonicalizeUri($uri) {
// If we already have a scheme, we're fine.
if (empty($uri) || parse_url($uri, PHP_URL_SCHEME)) {
if (parse_url($uri, PHP_URL_SCHEME)) {
return $uri;
}
// Empty URI and non-links are allowed.
if (empty($uri) || in_array($uri, ['<nolink>', '<none>'])) {
return 'route:<nolink>';
}
// Remove the <front> component of the URL.
if (strpos($uri, '<front>') === 0) {
$uri = substr($uri, strlen('<front>'));
......
......@@ -86,6 +86,18 @@ public function canonicalizeUriDataProvider() {
'http://www.example.com/page#links',
'http://www.example.com/page#links',
],
'empty' => [
'',
'route:<nolink>',
],
'No link' => [
'<nolink>',
'route:<nolink>',
],
'none' => [
'<none>',
'route:<nolink>',
],
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment