You are here

function CourseObjectWebformFulfillment::optionsDefinition in Course 8.2

Same name and namespace in other branches
  1. 8.3 modules/course_webform/src/Plugin/course/CourseObject/CourseObjectWebformFulfillment.php \Drupal\course_webform\Plugin\course\CourseObject\CourseObjectWebformFulfillment::optionsDefinition()
  2. 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\CourseObject

Code

function optionsDefinition() {
  return array(
    'sids' => array(),
  );
}