Skip to content

Commit 95ef9c6

Browse files
committed
Add env option to disable part image overlay
Fixes #369 while preserving the state as-is
1 parent c445359 commit 95ef9c6

4 files changed

Lines changed: 7 additions & 0 deletions

File tree

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,9 @@ FIXER_API_KEY=CHANGEME
305305
# When this is empty the content of config/banner.md is used as banner
306306
BANNER=""
307307

308+
# Enable the part image overlay which shows name and filename of the picture
309+
SHOW_PART_IMAGE_OVERLAY=true
310+
308311
APP_ENV=prod
309312
APP_SECRET=a03498528f5a5fc089273ec9ae5b2849
310313

config/packages/twig.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ twig:
2121
available_themes: '%partdb.available_themes%'
2222
saml_enabled: '%partdb.saml.enabled%'
2323
part_preview_generator: '@App\Services\Attachments\PartPreviewGenerator'
24+
img_overlay: '%partdb.show_part_image_overlay%'
2425

2526
when@test:
2627
twig:

config/parameters.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ parameters:
7474
# Miscellaneous
7575
######################################################################################################################
7676
partdb.demo_mode: '%env(bool:DEMO_MODE)%' # If set to true, all potentially dangerous things are disabled (like changing passwords of the own user)
77+
partdb.show_part_image_overlay: '%env(bool:SHOW_PART_IMAGE_OVERLAY)%' # If set to false, the filename overlay of the part image will be disabled
7778

7879
# Set the themes from which the user can choose from in the settings.
7980
# Themes commented here by default, are not really usable, because of display problems. Enable them at your own risk!

templates/parts/info/_picture.html.twig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<div class="carousel-item {% if loop.first %}active{% endif %}">
1414
<a href="{{ entity_url(pic, 'file_view') }}" data-turbo="false" target="_blank" rel="noopener">
1515
<img class="d-block w-100 img-fluid img-thumbnail bg-light part-info-image" src="{{ entity_url(pic, 'file_view') }}" alt="">
16+
{% if img_overlay %}
1617
<div class="mask"></div>
1718
<div class="carousel-caption-hover">
1819
<div class="carousel-caption text-white">
@@ -21,6 +22,7 @@
2122
<div>{{ entity_type_label(pic.element) }}</div>
2223
</div>
2324
</div>
25+
{% endif %}
2426
</a>
2527
</div>
2628
{% endfor %}

0 commit comments

Comments
 (0)