Add admin-media-move, admin-media-replace and admin-media-actions plugins

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-19 00:19:51 +02:00
parent ded82bd24d
commit db54757311
37 changed files with 2042 additions and 0 deletions
@@ -0,0 +1,23 @@
<div class="remodal" data-remodal-id="modal-admin-media-move" data-remodal-options="hashTracking: false">
<form method="post" onsubmit='return false;'>
{% for field in fields %}
{% if field.type %}
{% set value = data.value(field.name) %}
<div class="block block-{{field.type}}">
{% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
</div>
{% endif %}
{% endfor %}
<div class="form-field grid">Select a destination page or enter the destination page route.</div>
<div class="button-bar">
<div class="loading">
{{ "Moving" }}... <i class="fa fa-spinner fa-spin"></i>
</div>
<button class="button primary" style="visibility: hidden" name="move">{{ "Move" }}</button>
<button class="button" style="visibility: hidden" name="move_and_go">{{ "Move And Go" }}</button>
</div>
</form>
</div>