You are here

public function GdprField::setRta in General Data Protection Regulation 8.2

Same name and namespace in other branches
  1. 8 modules/gdpr_fields/src/Entity/GdprField.php \Drupal\gdpr_fields\Entity\GdprField::setRta()
  2. 3.0.x modules/gdpr_fields/src/Entity/GdprField.php \Drupal\gdpr_fields\Entity\GdprField::setRta()

Sets the RTA setting.

Parameters

string $rta: RTA.

Return value

$this

File

modules/gdpr_fields/src/Entity/GdprField.php, line 259

Class

GdprField
Metadata for a GDPR field.

Namespace

Drupal\gdpr_fields\Entity

Code

public function setRta($rta) {
  $this->rta = $rta;
  return $this;
}