You are here

public function SiteSettingsConfigForm::machineNameExists in Site Settings and Labels 8

Machine name validation callback.

This method needs to exist, but there can be only one so it never exists.

Parameters

string $value: The input value.

Return value

bool That the machine name does not exist.

File

src/Form/SiteSettingsConfigForm.php, line 94

Class

SiteSettingsConfigForm
Class SiteSettingsConfigForm.

Namespace

Drupal\site_settings\Form

Code

public function machineNameExists($value) {
  return FALSE;
}