You are here

function CourseObjectSignup::thaw in Course 6

Same name and namespace in other branches
  1. 7.2 modules/course_signup/course_signup.classes.inc \CourseObjectSignup::thaw()
  2. 7 modules/course_signup/course_signup.classes.inc \CourseObjectSignup::thaw()

Thaw data frozen from an earlier export/clone.

Parameters

array $data: Unfrozen data.

Return value

int The new instance ID.

Overrides CourseObjectNode::thaw

File

modules/course_signup/course_signup.classes.inc, line 79

Class

CourseObjectSignup

Code

function thaw($ice) {

  // Not creating a new signup. Using this course.
  return $this
    ->getCourseNid();
}