You are here

public function OpignoEvaluationMethodField::applyDefaultValue in Opigno module 8

Same name and namespace in other branches
  1. 3.x ActivityTypes/opigno_file_upload/src/Plugin/Field/FieldType/OpignoEvaluationMethodField.php \Drupal\opigno_file_upload\Plugin\Field\FieldType\OpignoEvaluationMethodField::applyDefaultValue()

Applies the default value.

Parameters

bool $notify: (optional) Whether to notify the parent object of the change. Defaults to TRUE. If a property is updated from a parent object, set it to FALSE to avoid being notified again.

Return value

$this Returns itself to allow for chaining.

Overrides Map::applyDefaultValue

File

ActivityTypes/opigno_file_upload/src/Plugin/Field/FieldType/OpignoEvaluationMethodField.php, line 27

Class

OpignoEvaluationMethodField
Plugin implementation of the 'opigno_evaluation_method' field type.

Namespace

Drupal\opigno_file_upload\Plugin\Field\FieldType

Code

public function applyDefaultValue($notify = TRUE) {
  return parent::applyDefaultValue($notify);
}