]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/Image.php
[frio] Normalize quoting style in PHP files
[friendica.git] / view / theme / frio / php / Image.php
1 <?php
2 /**
3  * @file view/theme/frio/php/Image.php
4  * @brief contain methods to deal with images
5  */
6
7 /**
8  * @brief This class contains methods to deal with images
9  */
10 use Friendica\Core\L10n;
11
12 class Image
13 {
14         /**
15          * @brief Give all available options for the background image
16          *
17          * @param array $arr Array with the present user settings
18          *
19          * @return array Array with the immage options
20          */
21         public static function get_options($arr)
22         {
23                 $bg_image_options = [
24                         'repeat'  => ['frio_bg_image_option', L10n::t('Repeat the image'), 'repeat', L10n::t('Will repeat your image to fill the background.'), ($arr['bg_image_option'] == 'repeat')],
25                         'stretch' => ['frio_bg_image_option', L10n::t('Stretch'), 'stretch', L10n::t('Will stretch to width/height of the image.'), ($arr['bg_image_option'] == 'stretch')],
26                         'cover'   => ['frio_bg_image_option', L10n::t('Resize fill and-clip'), 'cover', L10n::t('Resize to fill and retain aspect ratio.'), ($arr['bg_image_option'] == 'cover')],
27                         'contain' => ['frio_bg_image_option', L10n::t('Resize best fit'), 'contain', L10n::t('Resize to best fit and retain aspect ratio.'), ($arr['bg_image_option'] == 'contain')],
28                 ];
29
30                 return $bg_image_options;
31         }
32 }