You are here

function CourseObjectUbercart::thaw in Course 3.x

Overrides CourseObject::thaw

File

modules/course_uc/src/Plugin/course/CourseObject/CourseObjectUbercart.php, line 101

Class

CourseObjectUbercart
Plugin annotation @CourseObject( id = "ubercart", label = "Payment", )

Namespace

Drupal\course_uc\Plugin\course\CourseObject

Code

function thaw($ice) {

  // Not creating a new product. Using this course.
  return $this
    ->getCourse()
    ->id();
}