You are here

public static function MachineName::exists in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformElement/MachineName.php \Drupal\webform\Plugin\WebformElement\MachineName::exists()

Exists callback for machine name that always returns TRUE.

Return value

bool Always returns TRUE.

File

src/Plugin/WebformElement/MachineName.php, line 62

Class

MachineName
Provides a 'machine_name' element.

Namespace

Drupal\webform\Plugin\WebformElement

Code

public static function exists() {
  return FALSE;
}