38 $this->field_factory = $DIC->ui()->factory()->input()->field();
44 return $this->field_factory->section(
52 $possible = $this->
settings->isPreviewPossible();
54 $activated = $this->field_factory
56 $this->
language->txt(
'enable_preview'),
57 $this->
language->txt(
'enable_preview_info')
59 ->withDisabled(!$possible)
60 ->withValue($this->
settings->isPreviewEnabled())
62 $this->
refinery->custom()->transformation(
function ($v):
void {
63 $this->
settings->setPreviewEnabled($v);
67 $image_size = $this->field_factory
69 $this->
language->txt(
'preview_image_size'),
70 $this->
language->txt(
'preview_image_size_info')
72 ->withDisabled(!$possible)
74 ->withValue($this->
settings->getImageSize())
76 $this->
refinery->custom()->transformation(
function ($v):
void {
81 $persisting = $this->field_factory
83 $this->
language->txt(
'preview_persisting'),
84 $this->
language->txt(
'preview_persisting_info')
86 ->withDisabled(!$possible)
87 ->withValue($this->
settings->isPersisting())
89 $this->
refinery->custom()->transformation(
function ($v):
void {
94 $max_previews = $this->field_factory
96 $this->
language->txt(
'max_previews_per_object'),
97 $this->
language->txt(
'max_previews_per_object_info')
99 ->withDisabled(!$possible)
100 ->withValue($this->
settings->getMaximumPreviews())
102 $this->
refinery->custom()->transformation(
function ($v):
void {
103 $this->
settings->setMaximumPreviews($v);
107 $tile_previews = $this->field_factory
109 $this->
language->txt(
'previews_for_tiles'),
110 $this->
language->txt(
'previews_for_tiles_info')
112 ->withDisabled(!$possible)
113 ->withValue($this->
settings->hasTilePreviews())
115 $this->
refinery->custom()->transformation(
function ($v):
void {
116 $this->
settings->setTilePreviews($v);
120 return $this->field_factory->group(
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
language()
description: > Example for rendring a language glyph.