You are here

public function Course::getPrev in Course 3.x

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

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

Return value

CourseObject

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

File

src/Entity/Course.php, line 193

Class

Course
Defines the Course entity class.

Namespace

Drupal\course\Entity

Code

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