77 $this->preview_enabled = (bool) $this->
settings->get(
'preview_enabled',
'0') ===
true;
78 $this->max_previews = $this->
settings->get(
'max_previews_per_object', self::MAX_PREVIEWS_DEFAULT);
88 $instance = self::getInstance();
89 $instance->preview_enabled = $a_value ===
true;
90 $instance->settings->set(
'preview_enabled', $instance->preview_enabled);
100 return self::getInstance()->preview_enabled;
110 $instance = self::getInstance();
111 $instance->max_previews = self::adjustNumeric($a_value, self::MAX_PREVIEWS_MIN, self::MAX_PREVIEWS_MAX, self::MAX_PREVIEWS_DEFAULT);
112 $instance->settings->set(
'max_previews_per_object', $instance->max_previews);
122 return self::getInstance()->max_previews;
132 $instance = self::getInstance();
133 $instance->image_size = self::adjustNumeric($a_value, self::IMAGE_SIZE_MIN, self::IMAGE_SIZE_MAX, self::IMAGE_SIZE_DEFAULT);
134 $instance->settings->set(
'preview_image_size', $instance->image_size);
144 return self::getInstance()->image_size;
154 $instance = self::getInstance();
155 $instance->image_quality = self::adjustNumeric($a_value, self::IMAGE_QUALITY_MIN, self::IMAGE_QUALITY_MAX, self::IMAGE_QUALITY_DEFAULT);
156 $instance->settings->set(
'preview_image_quality', $instance->image_quality);
166 return self::getInstance()->image_quality;
174 if (self::$instance === null) {
178 return self::$instance;
184 if (is_numeric($value)) {
186 $value = (
int) $value;
189 } elseif ($value > $max) {
static setPreviewEnabled(bool $a_value)
Sets whether the preview functionality is enabled.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getImageQuality()
Gets the quality (compression) of the preview images (1-100).
static setMaximumPreviews(int $a_value)
Sets the maximum number of preview pictures per object.
static ilPreviewSettings $instance
The instance of the ilPreviewSettings.
static getInstance()
Gets the instance of the ilPreviewSettings.
static adjustNumeric($value, int $min, int $max, int $default)
const IMAGE_QUALITY_DEFAULT
__construct()
Private constructor.
static getMaximumPreviews()
Gets the maximum number of preview pictures per object.
static isPreviewEnabled()
Gets whether the preview functionality is enabled.
static getImageSize()
Gets the size of the preview images in pixels.
ilSetting $settings
Settings object.
int $max_previews
Defines the maximum number of previews pictures per object.
int $image_size
Defines the maximum width and height of the preview images.
static setImageQuality(int $a_value)
Sets the quality (compression) of the preview images (1-100).
const MAX_PREVIEWS_DEFAULT
int $image_quality
Defines the quality (compression) of the preview images (1-100).
bool $preview_enabled
Indicates whether the preview functionality is enabled.
static setImageSize(int $a_value)
Sets the size of the preview images in pixels.