Skip to content
Snippets Groups Projects
Commit 4b0e1de4 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5204: fixing getting image styles

parent dcd8fe78
No related branches found
No related tags found
1 merge request!181ISTWCMS-5204: ensuring that image styles are created so that it can be used...
...@@ -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',
]; ];
} }
......
...@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment