]> git.mxchange.org Git - friendica.git/commitdiff
Replace deprecated defaults() calls with ?? and ?: in include/ and view/
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 16 Oct 2019 12:43:59 +0000 (08:43 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 16 Oct 2019 12:51:03 +0000 (08:51 -0400)
include/api.php
include/conversation.php
include/enotify.php
include/items.php
view/theme/duepuntozero/style.php
view/theme/frio/config.php
view/theme/frio/php/default.php
view/theme/frio/php/frio_boot.php
view/theme/quattro/style.php
view/theme/vier/style.php
view/theme/vier/theme.php

index e986a5173490791e432b28ada142971c5fa4e4d1..7daf134551594b3e45ca1a389c318a91aae148a0 100644 (file)
@@ -322,7 +322,7 @@ function api_call(App $a)
 
                                $stamp =  microtime(true);
                                $return = call_user_func($info['func'], $type);
-                               $duration = (float) (microtime(true) - $stamp);
+                               $duration = floatval(microtime(true) - $stamp);
 
                                Logger::info(API_LOG_PREFIX . 'username {username}', ['module' => 'api', 'action' => 'call', 'username' => $a->user['username'], 'duration' => round($duration, 2)]);
 
index 74c8a6d27243ef9a6ac09361707783a2d26f3abd..b6faa4d2c88e3e97f5f1b06449f9a7a3b0e0de88 100644 (file)
@@ -1208,7 +1208,7 @@ function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
                '$new_post' => L10n::t('New Post'),
                '$return_path'  => $query_str,
                '$action'       => 'item',
-               '$share'        => defaults($x, 'button', L10n::t('Share')),
+               '$share'        => ($x['button'] ?? '') ?: L10n::t('Share'),
                '$upload'       => L10n::t('Upload photo'),
                '$shortupload'  => L10n::t('upload photo'),
                '$attach'       => L10n::t('Attach file'),
@@ -1225,17 +1225,17 @@ function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
                '$shortsetloc'  => L10n::t('set location'),
                '$noloc'        => L10n::t('Clear browser location'),
                '$shortnoloc'   => L10n::t('clear location'),
-               '$title'        => defaults($x, 'title', ''),
+               '$title'        => $x['title'] ?? '',
                '$placeholdertitle' => L10n::t('Set title'),
-               '$category'     => defaults($x, 'category', ''),
+               '$category'     => $x['category'] ?? '',
                '$placeholdercategory' => Feature::isEnabled(local_user(), 'categories') ? L10n::t("Categories \x28comma-separated list\x29") : '',
                '$wait'         => L10n::t('Please wait'),
                '$permset'      => L10n::t('Permission settings'),
                '$shortpermset' => L10n::t('permissions'),
                '$wall'         => $notes_cid ? 0 : 1,
                '$posttype'     => $notes_cid ? Item::PT_PERSONAL_NOTE : Item::PT_ARTICLE,
-               '$content'      => defaults($x, 'content', ''),
-               '$post_id'      => defaults($x, 'post_id', ''),
+               '$content'      => $x['content'] ?? '',
+               '$post_id'      => $x['post_id'] ?? '',
                '$baseurl'      => System::baseUrl(true),
                '$defloc'       => $x['default_location'],
                '$visitor'      => $x['visitor'],
@@ -1527,9 +1527,9 @@ function get_responses(array $conv_responses, array $response_verbs, array $item
        $ret = [];
        foreach ($response_verbs as $v) {
                $ret[$v] = [];
-               $ret[$v]['count'] = defaults($conv_responses[$v], $item['uri'], 0);
-               $ret[$v]['list']  = defaults($conv_responses[$v], $item['uri'] . '-l', []);
-               $ret[$v]['self']  = defaults($conv_responses[$v], $item['uri'] . '-self', '0');
+               $ret[$v]['count'] = $conv_responses[$v][$item['uri']] ?? 0;
+               $ret[$v]['list']  = $conv_responses[$v][$item['uri'] . '-l'] ?? [];
+               $ret[$v]['self']  = $conv_responses[$v][$item['uri'] . '-self'] ?? '0';
                if (count($ret[$v]['list']) > MAX_LIKERS) {
                        $ret[$v]['list_part'] = array_slice($ret[$v]['list'], 0, MAX_LIKERS);
                        array_push($ret[$v]['list_part'], '<a href="#" data-toggle="modal" data-target="#' . $v . 'Modal-'
index 6a66c8fa09a1822d7df160420e651659ce4dcb91..01c946d1ff9d83d3c8ecb87a7e761e799c5ce7e2 100644 (file)
@@ -46,10 +46,10 @@ function notification($params)
                return false;
        }
 
-       $params['notify_flags'] = defaults($params, 'notify_flags', $user['notify-flags']);
-       $params['language']     = defaults($params, 'language'    , $user['language']);
-       $params['to_name']      = defaults($params, 'to_name'     , $user['username']);
-       $params['to_email']     = defaults($params, 'to_email'    , $user['email']);
+       $params['notify_flags'] = ($params['notify_flags'] ?? '') ?: $user['notify-flags'];
+       $params['language']     = ($params['language']     ?? '') ?: $user['language'];
+       $params['to_name']      = ($params['to_name']      ?? '') ?: $user['username'];
+       $params['to_email']     = ($params['to_email']     ?? '') ?: $user['email'];
 
        // from here on everything is in the recipients language
        L10n::pushLang($params['language']);
@@ -456,17 +456,17 @@ function notification($params)
                if (!isset($params['subject'])) {
                        Logger::warning('subject isn\'t set.', ['type' => $params['type']]);
                }
-               $subject = defaults($params, 'subject', '');
+               $subject = $params['subject'] ?? '';
 
                if (!isset($params['preamble'])) {
                        Logger::warning('preamble isn\'t set.', ['type' => $params['type'], 'subject' => $subject]);
                }
-               $preamble = defaults($params, 'preamble', '');
+               $preamble = $params['preamble'] ?? '';
 
                if (!isset($params['body'])) {
                        Logger::warning('body isn\'t set.', ['type' => $params['type'], 'subject' => $subject, 'preamble' => $preamble]);
                }
-               $body = defaults($params, 'body', '');
+               $body = $params['body'] ?? '';
 
                $show_in_notification_page = false;
        }
@@ -613,11 +613,11 @@ function notification($params)
                $datarray['siteurl'] = $siteurl;
                $datarray['type'] = $params['type'];
                $datarray['parent'] = $parent_id;
-               $datarray['source_name'] = defaults($params, 'source_name', '');
-               $datarray['source_link'] = defaults($params, 'source_link', '');
-               $datarray['source_photo'] = defaults($params, 'source_photo', '');
+               $datarray['source_name'] = $params['source_name'] ?? '';
+               $datarray['source_link'] = $params['source_link'] ?? '';
+               $datarray['source_photo'] = $params['source_photo'] ?? '';
                $datarray['uid'] = $params['uid'];
-               $datarray['username'] = defaults($params, 'to_name', '');
+               $datarray['username'] = $params['to_name'] ?? '';
                $datarray['hsitelink'] = $hsitelink;
                $datarray['tsitelink'] = $tsitelink;
                $datarray['hitemlink'] = '<a href="'.$itemlink.'">'.$itemlink.'</a>';
index 4cc10e628cd50ec95f56884f2c4b6e58f856e50e..3868db40a29770b186d918baa3d0651706bfb568 100644 (file)
@@ -42,7 +42,7 @@ function add_page_info_data(array $data, $no_photos = false)
                $data["type"] = "link";
        }
 
-       $data["title"] = defaults($data, "title", "");
+       $data["title"] = $data["title"] ?? '';
 
        if ((($data["type"] != "link") && ($data["type"] != "video") && ($data["type"] != "photo")) || ($data["title"] == $data["url"])) {
                return "";
index a5810f2dc131cb06237fbe253b645c8867d970c1..2758ada41451a0f18817f769542566f9f2ca32b3 100644 (file)
@@ -10,7 +10,7 @@ if (file_exists("$THEMEPATH/style.css")) {
        echo file_get_contents("$THEMEPATH/style.css");
 }
 
-$uid = defaults($_REQUEST, 'puid', 0);
+$uid = $_REQUEST['puid'] ?? 0;
 
 $s_colorset = Config::get('duepuntozero', 'colorset');
 $colorset = PConfig::get($uid, 'duepuntozero', 'colorset');
index df0f65a6b873e8cd4b301beea015c1e7d5d48333..125081235c8515ab89c0729507c3dc00ab689001 100644 (file)
@@ -132,7 +132,7 @@ function frio_form($arr)
                '$nav_icon_color'   => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false],
                '$link_color'       => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false],
                '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', L10n::t('Set the background color'), $arr['background_color'], '', false],
-               '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), defaults($arr, 'contentbg_transp', 100), ''],
+               '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), ($arr['contentbg_transp'] ?? 0) ?: 100, ''],
                '$background_image' => array_key_exists('background_image', $disable) ? '' : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false],
                '$bg_image_options_title' => L10n::t('Background image style'),
                '$bg_image_options' => Image::get_options($arr),
index 22bb995804a474cd032d74f1bb479351fdf7577a..6b39e68acbe078fd47d7186dd24bf93795faa800 100644 (file)
@@ -28,7 +28,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
 <html>
        <head>
                <title><?php if (!empty($page['title'])) echo $page['title'] ?></title>
-               <meta request="<?php echo htmlspecialchars(defaults($_REQUEST, 'pagename', '')) ?>">
+               <meta request="<?php echo htmlspecialchars($_REQUEST['pagename'] ?? '') ?>">
                <script  type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
                <script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
 <?php
@@ -141,7 +141,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
                </main>
 
                <footer>
-                       <?php echo defaults($page, 'footer', ''); ?>
+                       <?php echo $page['footer'] ?? ''; ?>
                </footer>
 <?php } ?> <!-- End of condition if $minimal else the rest -->
        </body>
index dcb87b6d27f160687dfd5f268f9a8c69ab0ee8f6..7ec81a3565785fa34ef7ba0a7dcba971ff8c13b2 100644 (file)
@@ -22,7 +22,7 @@ function load_page(App $a)
                require 'view/theme/frio/none.php';
        } else {
                $template = 'view/theme/' . $a->getCurrentTheme() . '/'
-                       . defaults($a->page, 'template', 'default' ) . '.php';
+                       . (($a->page['template'] ?? '') ?: 'default' ) . '.php';
                if (file_exists($template)) {
                        require_once $template;
                } else {
index cca458a254ff4529b84d7bc3ca0c9cf646fe38f5..84fa0b97368459b46278489900ee31071d4af5c6 100644 (file)
@@ -6,7 +6,7 @@ use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Model\Profile;
 
-$uid = defaults($_REQUEST, 'puid', 0);
+$uid = $_REQUEST['puid'] ?? 0;
 
 $color = false;
 $quattro_align = false;
index 69bfc78d88abfff0347a98c99db71df7b4f4b921..8a7c2f67d11d610499b43d536871a963f49d66ec 100644 (file)
@@ -7,7 +7,7 @@ use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Model\Profile;
 
-$uid = defaults($_REQUEST, 'puid', 0);
+$uid = $_REQUEST['puid'] ?? 0;
 
 $style = PConfig::get($uid, 'vier', 'style');
 
index f33f3017fb38a3ed0a9c4da619c1d63c41f6a767..e5d71bdf578545b13157a9f926f8c79de81b6a06 100644 (file)
@@ -29,7 +29,7 @@ function vier_init(App $a)
 
        Renderer::setActiveTemplateEngine('smarty3');
 
-       if (!empty($a->argv[0]) && $a->argv[0] . defaults($a->argv, 1, '') === "profile".$a->user['nickname'] || $a->argv[0] === "network" && local_user()) {
+       if (!empty($a->argv[0]) && ($a->argv[0] . ($a->argv[1] ?? '')) === ('profile' . $a->user['nickname']) || $a->argv[0] === 'network' && local_user()) {
                vier_community_info();
 
                $a->page['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
@@ -191,7 +191,7 @@ function vier_community_info()
 
        //Community_Pages at right_aside
        if ($show_pages && local_user()) {
-               $cid = defaults($_GET, 'cid', null);
+               $cid = $_GET['cid'] ?? null;
 
                //sort by last updated item
                $lastitem = true;