EntityWorkspaceConflictConstraint.php
Same filename in other branches
Namespace
Drupal\workspaces\Plugin\Validation\ConstraintFile
-
core/
modules/ workspaces/ src/ Plugin/ Validation/ Constraint/ EntityWorkspaceConflictConstraint.php
View source
<?php
namespace Drupal\workspaces\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Validation constraint for an entity being edited in multiple workspaces.
*
* @Constraint(
* id = "EntityWorkspaceConflict",
* label = @Translation("Entity workspace conflict", context = "Validation"),
* type = {"entity"}
* )
*/
class EntityWorkspaceConflictConstraint extends Constraint {
/**
* The default violation message.
*
* @var string
*/
public $message = 'The content is being edited in the %label workspace. As a result, your changes cannot be saved.';
}
Classes
Title | Deprecated | Summary |
---|---|---|
EntityWorkspaceConflictConstraint | Validation constraint for an entity being edited in multiple workspaces. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.