ForumLeafConstraint.php
Same filename in other branches
Namespace
Drupal\forum\Plugin\Validation\ConstraintFile
-
core/
modules/ forum/ src/ Plugin/ Validation/ Constraint/ ForumLeafConstraint.php
View source
<?php
namespace Drupal\forum\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Checks that the node is assigned only a "leaf" term in the forum taxonomy.
*
* @Constraint(
* id = "ForumLeaf",
* label = @Translation("Forum leaf", context = "Validation"),
* )
*/
class ForumLeafConstraint extends Constraint {
public $selectForum = 'Select a forum.';
public $noLeafMessage = 'The item %forum is a forum container, not a forum. Select one of the forums below instead.';
}
Classes
Title | Deprecated | Summary |
---|---|---|
ForumLeafConstraint | Checks that the node is assigned only a "leaf" term in the forum taxonomy. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.