
| Current Path : /var/www/html/12park/web/core/modules/path/src/Plugin/Validation/Constraint/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/core/modules/path/src/Plugin/Validation/Constraint/PathAliasConstraint.php |
<?php
namespace Drupal\path\Plugin\Validation\Constraint;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\Core\Validation\Attribute\Constraint;
use Symfony\Component\Validator\Constraint as SymfonyConstraint;
/**
* Validation constraint for changing path aliases in pending revisions.
*/
#[Constraint(
id: 'PathAlias',
label: new TranslatableMarkup('Path alias.', [], ['context' => 'Validation'])
)]
class PathAliasConstraint extends SymfonyConstraint {
public $message = 'You can only change the URL alias for the <em>published</em> version of this content.';
}