function CourseObjectWebformFulfillment::optionsDefinition in Course 8.2
Same name and namespace in other branches
- 8.3 modules/course_webform/src/Plugin/course/CourseObject/CourseObjectWebformFulfillment.php \Drupal\course_webform\Plugin\course\CourseObject\CourseObjectWebformFulfillment::optionsDefinition()
- 3.x modules/course_webform/src/Plugin/course/CourseObject/CourseObjectWebformFulfillment.php \Drupal\course_webform\Plugin\course\CourseObject\CourseObjectWebformFulfillment::optionsDefinition()
Define storage for submission IDs.
Overrides CourseObjectFulfillment::optionsDefinition
File
- modules/
course_webform/ src/ Plugin/ course/ CourseObject/ CourseObjectWebformFulfillment.php, line 16
Class
- CourseObjectWebformFulfillment
- Course fulfillment class for webforms.
Namespace
Drupal\course_webform\Plugin\course\CourseObjectCode
function optionsDefinition() {
return array(
'sids' => array(),
);
}