public function RegistrantsElementUtility::replaceFirstRegistrant in RNG - Events and Registrations 3.x
Same name and namespace in other branches
- 8.2 src/RegistrantsElementUtility.php \Drupal\rng\RegistrantsElementUtility::replaceFirstRegistrant()
- 8 src/RegistrantsElementUtility.php \Drupal\rng\RegistrantsElementUtility::replaceFirstRegistrant()
File
- src/
RegistrantsElementUtility.php, line 100
Class
Namespace
Drupal\rngCode
public function replaceFirstRegistrant(RegistrantInterface $registrant) {
$registrants = $this
->getRegistrants();
// Get first key, or use 0 if there is none.
$key = key($registrants);
$key = $key !== NULL ? $key : 0;
$registrants[$key] = $registrant;
$this
->setRegistrants($registrants);
}