]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/php/Image.php
Merge pull request #4243 from MrPetovan/task/switch-to-array-new-style
[friendica.git] / view / theme / frio / php / Image.php
index 3663ac58021958a19873d3f998a48b99f4c919bb..159f258e75f20363dae07fc11bf71a23d9a3c54e 100644 (file)
@@ -12,22 +12,22 @@ class Image {
 
        /**
         * @brief Give all available options for the background image
-        * 
+        *
         * @param array $arr Array with the present user settings
-        * 
+        *
         * @return array Array with the immage options
         */
        public static function get_options($arr) {
-               $bg_image_options = array(
-                                       'repeat' => array(
-                                               'frio_bg_image_option', t("Repeat the image"),  "repeat",       t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")),
-                                       'stretch' => array(
-                                               'frio_bg_image_option', t("Stretch"),           "stretch",      t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")),
-                                       'cover' => array(
-                                               'frio_bg_image_option', t("Resize fill and-clip"), "cover",     t("Resize to fill and retain aspect ratio."),   ($arr["bg_image_option"] == "cover")),
-                                       'contain' => array(
-                                               'frio_bg_image_option', t("Resize best fit"),   "contain",      t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")),
-               );
+               $bg_image_options = [
+                                       'repeat' => [
+                                               'frio_bg_image_option', t("Repeat the image"),  "repeat",       t("Will repeat your image to fill the background."), ($arr["bg_image_option"] == "repeat")],
+                                       'stretch' => [
+                                               'frio_bg_image_option', t("Stretch"),           "stretch",      t("Will stretch to width/height of the image."), ($arr["bg_image_option"] == "stretch")],
+                                       'cover' => [
+                                               'frio_bg_image_option', t("Resize fill and-clip"), "cover",     t("Resize to fill and retain aspect ratio."),   ($arr["bg_image_option"] == "cover")],
+                                       'contain' => [
+                                               'frio_bg_image_option', t("Resize best fit"),   "contain",      t("Resize to best fit and retain aspect ratio."), ($arr["bg_image_option"] == "contain")],
+               ];
 
                return $bg_image_options;
        }