]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/Image.php
c18c32d11a655a237194cf5dd978de741fa706a8
[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 use Friendica\DI;
8
9 /**
10  * This class contains methods to deal with images
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', DI::l10n()->t('Top Banner'), 'stretch', DI::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', DI::l10n()->t('Full screen'), 'cover', DI::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', DI::l10n()->t('Single row mosaic'), 'contain', DI::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', DI::l10n()->t('Mosaic'), 'repeat', DI::l10n()->t('Repeat image to fill the screen.'), ($arr['bg_image_option'] == 'repeat')],
28                 ];
29
30                 return $bg_image_options;
31         }
32 }