public function EventTypeRule::removeCondition in RNG - Events and Registrations 8.2
Same name and namespace in other branches
- 8 src/Entity/EventTypeRule.php \Drupal\rng\Entity\EventTypeRule::removeCondition()
- 3.x src/Entity/EventTypeRule.php \Drupal\rng\Entity\EventTypeRule::removeCondition()
Remove a condition configuration.
Parameters
$name: A condition plugin instance ID.
Return value
$this The event type rule.
Overrides EventTypeRuleInterface::removeCondition
File
- src/
Entity/ EventTypeRule.php, line 143
Class
- EventTypeRule
- Defines the event type entity.
Namespace
Drupal\rng\EntityCode
public function removeCondition($name) {
unset($this->conditions[$name]);
return $this;
}