You are here

public function Submission::__isset in Little helpers 7.2

Transparently check for existence of properties.

Return value

bool TRUE if the property exists in the wrapped submission.

File

src/Webform/Submission.php, line 192

Class

Submission
A useful wrapper for webform submission objects.

Namespace

Drupal\little_helpers\Webform

Code

public function __isset($name) {
  return isset($this->submission->{$name});
}