|
@@ -33,9 +33,6 @@ class Parameters
|
|
|
#[ORM\Column(type: 'date', nullable: true)]
|
|
#[ORM\Column(type: 'date', nullable: true)]
|
|
|
private ?\DateTimeInterface $endCourseDate = null;
|
|
private ?\DateTimeInterface $endCourseDate = null;
|
|
|
|
|
|
|
|
- #[ORM\Column(options: ['default' => false])]
|
|
|
|
|
- private bool $trackingValidation = false;
|
|
|
|
|
-
|
|
|
|
|
#[ORM\Column(options: ['default' => true])]
|
|
#[ORM\Column(options: ['default' => true])]
|
|
|
private bool $editCriteriaNotationByAdminOnly = true;
|
|
private bool $editCriteriaNotationByAdminOnly = true;
|
|
|
|
|
|
|
@@ -172,18 +169,6 @@ class Parameters
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getTrackingValidation(): bool
|
|
|
|
|
- {
|
|
|
|
|
- return $this->trackingValidation;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public function setTrackingValidation(bool $trackingValidation): self
|
|
|
|
|
- {
|
|
|
|
|
- $this->trackingValidation = $trackingValidation;
|
|
|
|
|
-
|
|
|
|
|
- return $this;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
public function getEditCriteriaNotationByAdminOnly(): bool
|
|
public function getEditCriteriaNotationByAdminOnly(): bool
|
|
|
{
|
|
{
|
|
|
return $this->editCriteriaNotationByAdminOnly;
|
|
return $this->editCriteriaNotationByAdminOnly;
|