private function ActionSet::generateItemWeight in Business Rules 8
Same name and namespace in other branches
- 2.x src/Plugin/BusinessRulesAction/ActionSet.php \Drupal\business_rules\Plugin\BusinessRulesAction\ActionSet::generateItemWeight()
 
Generate the item weight.
Parameters
string $settings_type: The settings type: success|fail.
int $weight: The weight.
Return value
int The generated weight
1 call to ActionSet::generateItemWeight()
- ActionSet::formItems in src/
Plugin/ BusinessRulesAction/ ActionSet.php  - Provide the form fields for add Business Rule's Items.
 
File
- src/
Plugin/ BusinessRulesAction/ ActionSet.php, line 302  
Class
- ActionSet
 - Class ActionSet.
 
Namespace
Drupal\business_rules\Plugin\BusinessRulesActionCode
private function generateItemWeight($settings_type, $weight) {
  if (!isset($this->usedWeight[$settings_type])) {
    $this->usedWeight[$settings_type][] = $weight;
    return $weight;
  }
  if (!in_array($weight, $this->usedWeight[$settings_type])) {
    $this->usedWeight[$settings_type][] = $weight;
    return $weight;
  }
  else {
    $weight++;
    return $this
      ->generateItemWeight($settings_type, $weight);
  }
}