function CourseObjectSignup::thaw in Course 7.2
Same name and namespace in other branches
- 6 modules/course_signup/course_signup.classes.inc \CourseObjectSignup::thaw()
- 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 87
Class
Code
function thaw($ice) {
// Not creating a new signup. Using this course.
return $this
->getCourseNid();
}