You are here

public function TestNodeAction::autoSaveContext in Rules 8.3

Returns a list of context names that should be auto-saved after execution.

Return value

array A subset of context names as specified in the context definition of this action.

Overrides RulesActionBase::autoSaveContext

File

tests/modules/rules_test/src/Plugin/RulesAction/TestNodeAction.php, line 42

Class

TestNodeAction
Provides a test action that sets a node title.

Namespace

Drupal\rules_test\Plugin\RulesAction

Code

public function autoSaveContext() {

  // The node where we changed the title should be auto-saved after the
  // execution.
  return [
    'node',
  ];
}