--- title: Drupal Bundle classes date: 2025-07-12 23:25:52 tags: - drupal - php --- By overridding a given bundle type: ```php get('field_date')->value; } public function getEventName(): string { /** @var non-empty-string */ return $this->get('field_event_name')->value; } public function isPast(): bool { return $this->getEventDate() < strtotime('today'); } } ```