Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_cfg_common
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_cfg_common
Commits
4b0e1de4
Commit
4b0e1de4
authored
3 years ago
by
Eric Bremner
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-5204: fixing getting image styles
parent
dcd8fe78
No related branches found
No related tags found
1 merge request
!181
ISTWCMS-5204: ensuring that image styles are created so that it can be used...
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Service/UWService.php
+14
-2
14 additions, 2 deletions
src/Service/UWService.php
src/Service/UWServiceInterface.php
+3
-1
3 additions, 1 deletion
src/Service/UWServiceInterface.php
with
17 additions
and
3 deletions
src/Service/UWService.php
+
14
−
2
View file @
4b0e1de4
...
@@ -79,11 +79,14 @@ class UWService implements UWServiceInterface {
...
@@ -79,11 +79,14 @@ class UWService implements UWServiceInterface {
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public
function
getCropImageStyles
(
string
$type
):
array
{
public
function
getCropImageStyles
(
string
$type
,
bool
$get_all
=
FALSE
):
array
{
// Image styles for portrait.
$image_styles
[
'portrait'
]
=
[
$image_styles
[
'portrait'
]
=
[
'uw_is_portrait'
,
'uw_is_portrait'
,
];
];
// Image styles for responsive.
$image_styles
[
'responsive'
]
=
[
$image_styles
[
'responsive'
]
=
[
'uw_is_media_x_large'
,
'uw_is_media_x_large'
,
'uw_is_media_x_small'
,
'uw_is_media_x_small'
,
...
@@ -92,7 +95,15 @@ class UWService implements UWServiceInterface {
...
@@ -92,7 +95,15 @@ class UWService implements UWServiceInterface {
'uw_is_media_small'
,
'uw_is_media_small'
,
];
];
return
$image_styles
[
$type
];
// If the flag to get all the image styles is set,
// return all of them. If not return the
// specific image style.
if
(
$get_all
)
{
return
$image_styles
;
}
else
{
return
$image_styles
[
$type
];
}
}
}
/**
/**
...
@@ -156,6 +167,7 @@ class UWService implements UWServiceInterface {
...
@@ -156,6 +167,7 @@ class UWService implements UWServiceInterface {
'uw_is_media_medium'
,
'uw_is_media_medium'
,
'uw_is_media_small'
,
'uw_is_media_small'
,
'uw_is_media_x_small'
,
'uw_is_media_x_small'
,
'uw_is_portrait'
,
];
];
}
}
...
...
This diff is collapsed.
Click to expand it.
src/Service/UWServiceInterface.php
+
3
−
1
View file @
4b0e1de4
...
@@ -19,11 +19,13 @@ interface UWServiceInterface {
...
@@ -19,11 +19,13 @@ interface UWServiceInterface {
*
*
* @param string $type
* @param string $type
* The type of styles to get.
* The type of styles to get.
* @param bool $get_all
* Flag to get all the image styles.
*
*
* @return string[]
* @return string[]
* Array of image styles that are used.
* Array of image styles that are used.
*/
*/
public
function
getCropImageStyles
(
string
$type
):
array
;
public
function
getCropImageStyles
(
string
$type
,
bool
$get_all
=
FALSE
):
array
;
/**
/**
* Prepares responsive image.
* Prepares responsive image.
...
...
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