]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/Image.php
Merge pull request #4312 from zeroadam/feature/L10n
[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' => [
25                                                 '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")],
26                                         'stretch' => [
27                                                 'frio_bg_image_option', L10n::t("Stretch"),             "stretch",      L10n::t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")],
28                                         'cover' => [
29                                                 '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")],
30                                         'contain' => [
31                                                 '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")],
32                 ];
33
34                 return $bg_image_options;
35         }
36 }