You are here

public function ExecutionState::getAutoSaveSelectors in Rules 8.3

Returns the list of variables that should be auto-saved after execution.

Return value

string[] The list of data selectors that specify the target object to be saved. Example: node.uid.entity.

Overrides ExecutionStateInterface::getAutoSaveSelectors

File

src/Context/ExecutionState.php, line 187

Class

ExecutionState
The rules execution state.

Namespace

Drupal\rules\Context

Code

public function getAutoSaveSelectors() {
  return array_keys($this->saveLater);
}