public function CasPreRegisterEvent::setPropertyValues in CAS 8
Same name and namespace in other branches
- 2.x src/Event/CasPreRegisterEvent.php \Drupal\cas\Event\CasPreRegisterEvent::setPropertyValues()
Set an array of property values for the user entity on registration.
Parameters
array $property_values: The property values to set with each key corresponding to the property.
File
- src/
Event/ CasPreRegisterEvent.php, line 154
Class
- CasPreRegisterEvent
- Class CasPreRegisterEvent.
Namespace
Drupal\cas\EventCode
public function setPropertyValues(array $property_values) {
$this->propertyValues = array_merge($this->propertyValues, $property_values);
}