]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/style.php
Merge pull request #4243 from MrPetovan/task/switch-to-array-new-style
[friendica.git] / view / theme / frio / style.php
index 6c1bdabad61d04d4d383c4145f25f4145c4f2545..8452877b3ed4778c3caeccbb56aa52470761134a 100644 (file)
@@ -1,8 +1,12 @@
 <?php
-require_once 'view/theme/frio/php/PHPColors/Color.php';
-
+/**
+ * @file view/theme/frio/style.php
+ */
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
+use Friendica\Model\Profile;
+
+require_once 'view/theme/frio/php/PHPColors/Color.php';
 
 $schemecss = "";
 $schemecssfile = false;
@@ -10,7 +14,7 @@ $scheme_modified = 0;
 
 if ($a->module !== 'install') {
        // Get the UID of the profile owner.
-       $uid = get_theme_uid();
+       $uid = Profile::getThemeUid();
        if ($uid) {
                PConfig::load($uid, 'frio');
 
@@ -42,7 +46,7 @@ if ($a->module !== 'install') {
                $contentbg_transp = Config::get("frio", "contentbg_transp");
                $background_image = Config::get("frio", "background_image");
                $bg_image_option  = Config::get("frio", "bg_image_option");
-        $login_bg_image   = Config::get("frio", "login_bg_image");
+               $login_bg_image   = Config::get("frio", "login_bg_image");
                $modified         = Config::get("frio", "css_modified");
 
                // There is maybe the case that the user did never modify the theme settings.
@@ -80,11 +84,11 @@ if (($schema) && ($schema != '---')) {
 // should leave it for admins to define for themselves.
 // default.php and default.css MUST be symlinks to existing schema files.
 if (! $schema) {
-       if(file_exists('view/theme/frio/schema/default.php')) {
+       if (file_exists('view/theme/frio/schema/default.php')) {
                $schemefile = 'view/theme/frio/schema/default.php';
                require_once $schemefile;
        }
-       if(file_exists('view/theme/frio/schema/default.css')) {
+       if (file_exists('view/theme/frio/schema/default.css')) {
                $schemecssfile = 'view/theme/frio/schema/default.css';
        }
 }
@@ -135,7 +139,6 @@ if (!isset($link_hover_color)) {
        } else {
                $link_hover_color = '#' . $lhc->lighten(5);
        }
-
 }
 
 // Convert $bg_image_options into css.
@@ -164,7 +167,7 @@ switch ($bg_image_option) {
 // Convert transparency level from percentage to opacity value.
 $contentbg_transp = $contentbg_transp / 100;
 
-$options = array (
+$options =  [
        '$nav_bg'                      => $nav_bg,
        '$nav_icon_color'              => $nav_icon_color,
        '$nav_icon_hover_color'        => $nav_icon_hover_color,
@@ -177,8 +180,8 @@ $options = array (
        '$contentbg_transp'            => $contentbg_transp,
        '$background_image'            => $background_image,
        '$background_size_img'         => $background_size_img,
-    '$login_bg_image'              => $login_bg_image,
-);
+       '$login_bg_image'              => $login_bg_image,
+];
 
 $css_tpl = file_get_contents('view/theme/frio/css/style.css');
 
@@ -208,7 +211,7 @@ header('Last-Modified: '.$modified);
 // Only send the CSS file if it was changed.
 if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
        $cached_modified = gmdate('r', strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']));
-       $cached_etag = str_replace(array('"', "-gzip"), array('', ''),
+       $cached_etag = str_replace(['"', "-gzip"], ['', ''],
                                stripslashes($_SERVER['HTTP_IF_NONE_MATCH']));
 
        if (($cached_modified == $modified) && ($cached_etag == $etag)) {