MenuSettingsConstraint.php
Same filename in other branches
Namespace
Drupal\menu_ui\Plugin\Validation\ConstraintFile
-
core/
modules/ menu_ui/ src/ Plugin/ Validation/ Constraint/ MenuSettingsConstraint.php
View source
<?php
namespace Drupal\menu_ui\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Validation constraint for changing the menu settings in pending revisions.
*
* @Constraint(
* id = "MenuSettings",
* label = @Translation("Menu settings.", context = "Validation"),
* )
*/
class MenuSettingsConstraint extends Constraint {
public $message = 'You can only change the menu settings for the <em>published</em> version of this content.';
public $messageWeight = 'You can only change the menu link weight for the <em>published</em> version of this content.';
public $messageParent = 'You can only change the parent menu link for the <em>published</em> version of this content.';
public $messageRemove = 'You can only remove the menu link in the <em>published</em> version of this content.';
}
Classes
Title | Deprecated | Summary |
---|---|---|
MenuSettingsConstraint | Validation constraint for changing the menu settings in pending revisions. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.