You are here

protected function ServletConfig::getParameterStr in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Gets string parameter.

3 calls to ServletConfig::getParameterStr()
ServletConfig::getAllowedExtensions in src/Flmngr/FileUploaderServer/servlet/ServletConfig.php
Gets allowed extensions array.
ServletConfig::getCrossDomainUrl in src/Flmngr/FileUploaderServer/servlet/ServletConfig.php
Get crossdomain URL (for CORS).
ServletConfig::getRelocateFromHosts in src/Flmngr/FileUploaderServer/servlet/ServletConfig.php
Gets a list of hosts a relocation is allowed from.

File

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

Class

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

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\servlet

Code

protected function getParameterStr($name, $defaultValue) {
  return $this
    ->getParameter($name, $defaultValue, FALSE);
}