public function PathautoPattern::getSelectionLogic in Pathauto 8
Gets the selection logic used by the criteria (ie. "and" or "or").
Return value
string Either "and" or "or"; represents how the selection criteria are combined.
Overrides PathautoPatternInterface::getSelectionLogic
1 call to PathautoPattern::getSelectionLogic()
- PathautoPattern::applies in src/
Entity/ PathautoPattern.php - Determines if this pattern can apply a given object.
File
- src/
Entity/ PathautoPattern.php, line 329
Class
- PathautoPattern
- Defines the Pathauto pattern entity.
Namespace
Drupal\pathauto\EntityCode
public function getSelectionLogic() {
return $this->selection_logic;
}