]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/Image.php
Merge pull request #8135 from annando/brief
[friendica.git] / view / theme / frio / php / Image.php
1 <?php
2 /**
3  * @file view/theme/frio/php/Image.php
4  * contain methods to deal with images
5  */
6
7 /**
8  * This class contains methods to deal with images
9  */
10 use Friendica\Core\L10n;
11
12 class Image
13 {
14         /**
15          * 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                         'stretch' => ['frio_bg_image_option', L10n::t('Top Banner'), 'stretch', L10n::t('Resize image to the width of the screen and show background color below on long pages.'), ($arr['bg_image_option'] == 'stretch')],
25                         'cover'   => ['frio_bg_image_option', L10n::t('Full screen'), 'cover', L10n::t('Resize image to fill entire screen, clipping either the right or the bottom.'), ($arr['bg_image_option'] == 'cover')],
26                         'contain' => ['frio_bg_image_option', L10n::t('Single row mosaic'), 'contain', L10n::t('Resize image to repeat it on a single row, either vertical or horizontal.'), ($arr['bg_image_option'] == 'contain')],
27                         'repeat'  => ['frio_bg_image_option', L10n::t('Mosaic'), 'repeat', L10n::t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
28                 ];
29
30                 return $bg_image_options;
31         }
32 }