You are here

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

Gets maximum image width for resizing.

Overrides ConfigInterface::getMaxImageResizeWidth

File

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

Class

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

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\servlet

Code

public function getMaxImageResizeWidth() {
  return $this
    ->getParameterInt("maxImageResizeWidth", 5000);
}