public function DefaultDateRecurOccurrenceHandler::next in Recurring Dates Field 8
Move forward to next element
File
- src/
Plugin/ DateRecurOccurrenceHandler/ DefaultDateRecurOccurrenceHandler.php, line 465
Class
- DefaultDateRecurOccurrenceHandler
- Provides the default occurrence handler.
Namespace
Drupal\date_recur\Plugin\DateRecurOccurrenceHandlerCode
public function next() {
if (!empty($this->rruleObject)) {
$this->rruleObject
->next();
}
}