You are here

public function ServletConfig::isTestAllowed in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Is testing allowed, do not turn on on production.

Overrides ConfigInterface::isTestAllowed

File

src/Flmngr/FileUploaderServer/servlet/ServletConfig.php, line 182

Class

ServletConfig
Implementation of ConfigInterface interface. Returnes values with validationing them.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\servlet

Code

public function isTestAllowed() {
  return $this
    ->getParameterBool("isTestAllowed", FALSE);
}