2 declare(strict_types
= 1);
3 namespace TYPO3\CMS\Redirects\Evaluation
;
6 * This file is part of the TYPO3 CMS project.
8 * It is free software; you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License, either version 2
10 * of the License, or any later version.
12 * For the full copyright and license information, please read the
13 * LICENSE.txt file that was distributed with this source code.
15 * The TYPO3 project - inspiring people to share!
20 * Triggered from DataHandler as TCA formevals hook for validation / sanitation of domain values.
25 * Server-side removing of protocol on save
27 * @param string $value The field value to be evaluated
28 * @return string Evaluated field value
30 public function evaluateFieldValue(string $value): string
32 return preg_replace('#(.*?:\/\/)#', '', $value) ??
'';