You are here

public function BusinessRulesItemPluginBase::processSettings in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/Plugin/BusinessRulesItemPluginBase.php \Drupal\business_rules\Plugin\BusinessRulesItemPluginBase::processSettings()

Process the item settings before it's saved.

Parameters

array $settings: The settings to be processed before save the Business Rule Item.

\Drupal\business_rules\ItemInterface $item: The item being processed.

Return value

array The processed settings.

Overrides BusinessRulesItemPluginInterface::processSettings

6 calls to BusinessRulesItemPluginBase::processSettings()
AddUserToGroupAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/AddUserToGroupAction.php
Process the item settings before it's saved.
AssignRoleToUserAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/AssignRoleToUserAction.php
Process the item settings before it's saved.
GroupHasUserCondition::processSettings in modules/br_group/src/Plugin/BusinessRulesCondition/GroupHasUserCondition.php
Process the item settings before it's saved.
RemoveRoleFromUserAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/RemoveRoleFromUserAction.php
Process the item settings before it's saved.
RemoveUserFromGroupAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/RemoveUserFromGroupAction.php
Process the item settings before it's saved.

... See full list

19 methods override BusinessRulesItemPluginBase::processSettings()
ActionSet::processSettings in src/Plugin/BusinessRulesAction/ActionSet.php
Process the item settings before it's saved.
AddRoleToUser::processSettings in src/Plugin/BusinessRulesAction/AddRoleToUser.php
Process the item settings before it's saved.
AddUserToGroupAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/AddUserToGroupAction.php
Process the item settings before it's saved.
AssignRoleToUserAction::processSettings in modules/br_group/src/Plugin/BusinessRulesAction/AssignRoleToUserAction.php
Process the item settings before it's saved.
ChangeFieldInfo::processSettings in src/Plugin/BusinessRulesAction/ChangeFieldInfo.php
Process the item settings before it's saved.

... See full list

File

src/Plugin/BusinessRulesItemPluginBase.php, line 72

Class

BusinessRulesItemPluginBase
Base Class for Business rules plugins.

Namespace

Drupal\business_rules\Plugin

Code

public function processSettings(array $settings, ItemInterface $item) {
  return $settings;
}