Search for all

  1. Search 7.x-2.x for all
  2. Other projects
Title Object type File name Summary
plugin.manager.rules_action service ./rules.services.yml Drupal\rules\Core\RulesActionManager
plugin.manager.rules_data_processor service ./rules.services.yml Drupal\rules\Context\DataProcessorManager
plugin.manager.rules_event service ./rules.services.yml Drupal\rules\Core\RulesEventManager
plugin.manager.rules_expression service ./rules.services.yml Drupal\rules\Engine\ExpressionManager
plugin.manager.rules_ui service ./rules.services.yml Drupal\rules\Ui\RulesUiManager
PrepareExecutionMetadataStateTest class tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php Tests that the setup of the execution metadata state for an expression works.
PrepareExecutionMetadataStateTest.php file tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php
PrepareExecutionMetadataStateTest::testAddingVariable function tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php Tests that a variable can be added by an action and is then available.
PrepareExecutionMetadataStateTest::testPrepareAfterLoop function tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php Tests that the loop list item is removed after the loop.
PrepareExecutionMetadataStateTest::testPrepareInLoop function tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php Tests that state preparation also works for actions in a loop.
PrepareExecutionMetadataStateTest::testPreparingUntil function tests/src/Unit/Integration/Engine/PrepareExecutionMetadataStateTest.php Tests partial state setup until an expression is reached in the tree.
ReactionRuleAddForm class src/Form/ReactionRuleAddForm.php Provides a form to add a reaction rule.
ReactionRuleAddForm.php file src/Form/ReactionRuleAddForm.php
ReactionRuleAddForm::actions function src/Form/ReactionRuleAddForm.php Returns an array of supported actions for the current entity form.
ReactionRuleAddForm::create function src/Form/ReactionRuleAddForm.php Instantiates a new instance of this class.
ReactionRuleAddForm::form function src/Form/ReactionRuleAddForm.php Gets the actual form array to be built.
ReactionRuleAddForm::save function src/Form/ReactionRuleAddForm.php Form submission handler for the 'save' action.
ReactionRuleAddForm::__construct function src/Form/ReactionRuleAddForm.php Constructs a new reaction rule form.
ReactionRuleConfig class src/Entity/ReactionRuleConfig.php Reaction rule configuration entity to persistently store configuration.
ReactionRuleConfig.php file src/Entity/ReactionRuleConfig.php
ReactionRuleConfig::$config_version property src/Entity/ReactionRuleConfig.php The version the Reaction rule was created for.
ReactionRuleConfig::$description property src/Entity/ReactionRuleConfig.php The description of the rule, which is used only in the user interface.
ReactionRuleConfig::$events property src/Entity/ReactionRuleConfig.php The events this reaction rule is reacting on.
ReactionRuleConfig::$expression property src/Entity/ReactionRuleConfig.php The expression plugin specific configuration as nested array.
ReactionRuleConfig::$expressionObject property src/Entity/ReactionRuleConfig.php Stores a reference to the executable expression version of this component.
ReactionRuleConfig::$id property src/Entity/ReactionRuleConfig.php The unique ID of the Reaction Rule.
ReactionRuleConfig::$label property src/Entity/ReactionRuleConfig.php The label of the Reaction rule.
ReactionRuleConfig::$tags property src/Entity/ReactionRuleConfig.php The "tags" of a Reaction rule.
ReactionRuleConfig::addEvent function src/Entity/ReactionRuleConfig.php Adds an event to the rule configuration.
ReactionRuleConfig::calculateDependencies function src/Entity/ReactionRuleConfig.php Calculates dependencies and stores them in the dependency property.
ReactionRuleConfig::createDuplicate function src/Entity/ReactionRuleConfig.php Creates a duplicate of the entity.
ReactionRuleConfig::getComponent function src/Entity/ReactionRuleConfig.php Gets the Rules component that is invoked when the events are dispatched.
The returned component has the definitions of the available event context
set.
ReactionRuleConfig::getDescription function src/Entity/ReactionRuleConfig.php Returns the description.
ReactionRuleConfig::getEventNames function src/Entity/ReactionRuleConfig.php Gets machine names of all events the rule is reacting on.
ReactionRuleConfig::getEvents function src/Entity/ReactionRuleConfig.php Gets configuration of all events the rule is reacting on.
ReactionRuleConfig::getExpression function src/Entity/ReactionRuleConfig.php Gets a Rules expression instance for this Reaction rule.
ReactionRuleConfig::getExpressionManager function src/Entity/ReactionRuleConfig.php Returns the Rules expression manager.
ReactionRuleConfig::getTags function src/Entity/ReactionRuleConfig.php Returns the tags associated with this config.
ReactionRuleConfig::hasEvent function src/Entity/ReactionRuleConfig.php Returns if the rule is reacting on the given event.
ReactionRuleConfig::hasTags function src/Entity/ReactionRuleConfig.php Checks if there are tags associated with this config.
ReactionRuleConfig::label function src/Entity/ReactionRuleConfig.php Overrides \Drupal\Core\Entity\Entity::label().
ReactionRuleConfig::removeEvent function src/Entity/ReactionRuleConfig.php Removes an event from the rule configuration.
ReactionRuleConfig::setExpression function src/Entity/ReactionRuleConfig.php Sets a Rules expression instance for this Reaction rule.
ReactionRuleConfig::updateFromComponent function src/Entity/ReactionRuleConfig.php Updates the configuration based upon the given component.
ReactionRuleConfig::__clone function src/Entity/ReactionRuleConfig.php Magic clone method.
ReactionRuleConfigTest class tests/src/Unit/Entity/ReactionRuleConfigTest.php @coversDefaultClass \Drupal\rules\Entity\ReactionRuleConfig
@group Rules
ReactionRuleConfigTest.php file tests/src/Unit/Entity/ReactionRuleConfigTest.php
ReactionRuleConfigTest::addEventDataProvider function tests/src/Unit/Entity/ReactionRuleConfigTest.php Data provider for ::testAddEvent().
ReactionRuleConfigTest::createRule function tests/src/Unit/Entity/ReactionRuleConfigTest.php Creates a rule.
ReactionRuleConfigTest::testAddEvent function tests/src/Unit/Entity/ReactionRuleConfigTest.php @covers ::addEvent
@covers ::getEvents