Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
8361c942
Commit
8361c942
authored
7 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2940165
by mondrake, Berdir: [regression] Cannot add effects to image style via the UI
parent
4e20e78d
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/modules/image/src/ImageStyleListBuilder.php
+9
-1
9 additions, 1 deletion
core/modules/image/src/ImageStyleListBuilder.php
core/modules/image/src/Tests/ImageAdminStylesTest.php
+13
-2
13 additions, 2 deletions
core/modules/image/src/Tests/ImageAdminStylesTest.php
with
22 additions
and
3 deletions
core/modules/image/src/ImageStyleListBuilder.php
+
9
−
1
View file @
8361c942
...
@@ -39,9 +39,17 @@ public function getDefaultOperations(EntityInterface $entity) {
...
@@ -39,9 +39,17 @@ public function getDefaultOperations(EntityInterface $entity) {
'url'
=>
$entity
->
urlInfo
(
'flush-form'
),
'url'
=>
$entity
->
urlInfo
(
'flush-form'
),
];
];
return
parent
::
getDefaultOperations
(
$entity
)
+
[
$operations
=
parent
::
getDefaultOperations
(
$entity
)
+
[
'flush'
=>
$flush
,
'flush'
=>
$flush
,
];
];
// Remove destination URL from the edit link to allow editing image
// effects.
if
(
isset
(
$operations
[
'edit'
]))
{
$operations
[
'edit'
][
'url'
]
=
$entity
->
toUrl
(
'edit-form'
);
}
return
$operations
;
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
core/modules/image/src/Tests/ImageAdminStylesTest.php
+
13
−
2
View file @
8361c942
...
@@ -422,9 +422,20 @@ public function testEditEffect() {
...
@@ -422,9 +422,20 @@ public function testEditEffect() {
// Edit the scale effect that was just added.
// Edit the scale effect that was just added.
$this
->
clickLink
(
t
(
'Edit'
));
$this
->
clickLink
(
t
(
'Edit'
));
$this
->
drupalPostForm
(
NULL
,
[
'data[width]'
=>
'24'
,
'data[height]'
=>
'19'
],
t
(
'Update effect'
));
$this
->
drupalPostForm
(
NULL
,
[
'data[width]'
=>
'24'
,
'data[height]'
=>
'19'
],
t
(
'Update effect'
));
$this
->
drupalPostForm
(
NULL
,
[
'new'
=>
'image_scale'
],
t
(
'Add'
));
// Add another scale effect and make sure both exist.
// Add another scale effect and make sure both exist. Click through from
// the overview to make sure that it is possible to add new effect then.
$this
->
drupalGet
(
'admin/config/media/image-styles'
);
$rows
=
$this
->
xpath
(
'//table/tbody/tr'
);
$i
=
0
;
foreach
(
$rows
as
$row
)
{
if
(((
string
)
$row
->
td
[
0
])
===
'Test style scale edit scale'
)
{
$this
->
clickLink
(
'Edit'
,
$i
);
break
;
}
$i
++
;
}
$this
->
drupalPostForm
(
NULL
,
[
'new'
=>
'image_scale'
],
t
(
'Add'
));
$this
->
drupalPostForm
(
NULL
,
[
'data[width]'
=>
'12'
,
'data[height]'
=>
'19'
],
t
(
'Add effect'
));
$this
->
drupalPostForm
(
NULL
,
[
'data[width]'
=>
'12'
,
'data[height]'
=>
'19'
],
t
(
'Add effect'
));
$this
->
assertText
(
t
(
'Scale 24×19'
));
$this
->
assertText
(
t
(
'Scale 24×19'
));
$this
->
assertText
(
t
(
'Scale 12×19'
));
$this
->
assertText
(
t
(
'Scale 12×19'
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment