]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/Image.php
b1877393b98ec19573e92a206fa467fde6d4190e
[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                         'stretch' => ['frio_bg_image_option', L10n::t("Stretch"), "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("Resize, fill and clip"), "cover", L10n::t("Resize image to fill entire screen, clipping either the right or the bottom."), ($arr["bg_image_option"] == "cover")],
26                         'repeat'  => ['frio_bg_image_option', L10n::t("Repeat"), "repeat", L10n::t("Repeat image to fill the screen."), ($arr["bg_image_option"] == "repeat")],
27                         'contain' => ['frio_bg_image_option', L10n::t("Repeat one row"), "contain", L10n::t("Resize image to repeat it on a single row, either vertical or horizontal."), ($arr["bg_image_option"] == "contain")],
28                 ];
29
30                 return $bg_image_options;
31         }
32 }