You are here

public function Course::getNext in Course 3.x

Same name and namespace in other branches
  1. 8.3 src/Entity/Course.php \Drupal\course\Entity\Course::getNext()
  2. 8.2 src/Entity/Course.php \Drupal\course\Entity\Course::getNext()

Get the next course object, from the active course object.

Return value

CourseObject

1 call to Course::getNext()
Course::getNavigation in src/Entity/Course.php
Generate navigation links.

File

src/Entity/Course.php, line 180

Class

Course
Defines the Course entity class.

Namespace

Drupal\course\Entity

Code

public function getNext() {
  if (!$this->active) {
    $this
      ->setActive();
  }
  return $this->next;
}