You are here

public function YamlFormSubmission::getSticky in YAML Form 8

Get the submission's sticky flag.

Return value

string The submission's stick flag.

Overrides YamlFormSubmissionInterface::getSticky

File

src/Entity/YamlFormSubmission.php, line 278

Class

YamlFormSubmission
Defines the YamlFormSubmission entity.

Namespace

Drupal\yamlform\Entity

Code

public function getSticky() {
  return $this
    ->get('sticky')->value;
}