public function UserUnblock::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
- src/
Plugin/ RulesAction/ UserUnblock.php, line 51
Class
- UserUnblock
- Provides "Unblock User" action.
Namespace
Drupal\rules\Plugin\RulesActionCode
public function autoSaveContext() {
if ($this->saveLater) {
return [
'user',
];
}
return [];
}