]> git.mxchange.org Git - friendica.git/commitdiff
Review updates
authorAdam Magness <adam.magness@gmail.com>
Mon, 15 Jan 2018 04:44:39 +0000 (23:44 -0500)
committerAdam Magness <adam.magness@gmail.com>
Mon, 15 Jan 2018 04:44:39 +0000 (23:44 -0500)
Update function name, descriptive variable names.

mod/allfriends.php
mod/cal.php
mod/common.php
mod/hcard.php
mod/noscrape.php
mod/photos.php
mod/videos.php
src/Model/Profile.php

index fc50eb20666e58ecb4f4af1307025faf412cea9d..86f3f27e280529267c6fb4cce88c3f482efc76ee 100644 (file)
@@ -33,14 +33,14 @@ function allfriends_content(App $a)
 
        $uid = $a->user['uid'];
 
-       $c = dba::selectFirst('contact', ['name', 'url', 'photo'], ['id' => $cid, 'uid' => local_user()]);
+       $contact = dba::selectFirst('contact', ['name', 'url', 'photo'], ['id' => $cid, 'uid' => local_user()]);
 
-       if (!DBM::is_result($c)) {
+       if (!DBM::is_result($contact)) {
                return;
        }
 
        $a->page['aside'] = "";
-       Profile::load($a, "", 0, Contact::getDetailsByURL($c[0]["url"]));
+       Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
 
        $total = GContact::countAllFriends(local_user(), $cid);
 
index 3527234a84ba5596d2f84b90904a9383b1ba9ece..31ab5976b56a45f5755dff0f0d15eba4c28131c8 100644 (file)
@@ -45,7 +45,7 @@ function cal_init(App $a)
                        return;
                }
 
-               $profile = Profile::getProfiledataByNick($nick, $a->profile_uid);
+               $profile = Profile::getByNickname($nick, $a->profile_uid);
 
                $account_type = Contact::getAccountType($profile);
 
index 472269f406f287700547d10abc727ca87dadde22..cfeb531f761017616c0dfe00e777b1c5925cd78f 100644 (file)
@@ -36,19 +36,19 @@ function common_content(App $a)
        }
 
        if ($cmd === 'loc' && $cid) {
-               $c = dba::selectFirst('contact', ['name', 'url', 'photo'], ['id' => $cid, 'uid' => $uid]);
+               $contact = dba::selectFirst('contact', ['name', 'url', 'photo'], ['id' => $cid, 'uid' => $uid]);
 
-               if (DBM::is_result($c)) {
+               if (DBM::is_result($contact)) {
                        $a->page['aside'] = "";
-                       Profile::load($a, "", 0, Contact::getDetailsByURL($c["url"]));
+                       Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
                }
        } else {
-               $c = dba::selectFirst('contact', ['name', 'url', 'photo'], ['self' => true, 'uid' => $uid]);
+               $contact = dba::selectFirst('contact', ['name', 'url', 'photo'], ['self' => true, 'uid' => $uid]);
 
-               if (DBM::is_result($c)) {
+               if (DBM::is_result($contact)) {
                        $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"), array(
-                               '$name' => htmlentities($c['name']),
-                               '$photo' => $c['photo'],
+                               '$name' => htmlentities($contact['name']),
+                               '$photo' => $contact['photo'],
                                'url' => 'contacts/' . $cid
                        ));
        
@@ -59,7 +59,7 @@ function common_content(App $a)
                }
        }
 
-       if (!DBM::is_result($c)) {
+       if (!DBM::is_result($contact)) {
                return;
        }
 
index 30c5d1ea263578a0d512b45ed9e6bd1fa8383f2a..87f5ef3207be5e53740046ea4af71a65d2146524 100644 (file)
@@ -9,7 +9,7 @@ use Friendica\Model\Profile;
 
 function hcard_init(App $a)
 {
-       $blocked = (((Config::get('system', 'block_public')) && (! local_user()) && (! remote_user())) ? true : false);
+       $blocked = Config::get('system', 'block_public') && !local_user() && !remote_user();
 
        if ($a->argc > 1) {
                $which = $a->argv[1];
@@ -38,7 +38,7 @@ function hcard_init(App $a)
                $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
        }
 
-       if (! $blocked) {
+       if (!$blocked) {
                $keywords = ((x($a->profile, 'pub_keywords')) ? $a->profile['pub_keywords'] : '');
                $keywords = str_replace(array(',',' ',',,'), array(' ',',',','), $keywords);
                if (strlen($keywords)) {
index 4762d95464f94257e7819e320d02473faaba1b9e..bbf9020e84b1294fa92d8c4ad9ad32a1d0e154ef 100644 (file)
@@ -34,7 +34,7 @@ function noscrape_init(App $a)
        $keywords = str_replace(array('#',',',' ',',,'), array('',' ',',',','), $keywords);
        $keywords = explode(',', $keywords);
 
-       $r = dba::selectFirst('contact', ['photo'], ['self' => true, 'uid' => $a->profile['uid']]);
+       $contactPhoto = dba::selectFirst('contact', ['photo'], ['self' => true, 'uid' => $a->profile['uid']]);
 
        $json_info = array(
                'fn'       => $a->profile['name'],
@@ -44,7 +44,7 @@ function noscrape_init(App $a)
                'key'      => $a->profile['pubkey'],
                'homepage' => System::baseUrl()."/profile/{$which}",
                'comm'     => (x($a->profile, 'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY),
-               'photo'    => $r["photo"],
+               'photo'    => $contactPhoto["photo"],
                'tags'     => $keywords
        );
 
index 5da7de838716722341b9393389ec55a9b7ccdbe8..ac1f06f8e81bf9cd0e855f0a7a399d3ebbbdd0d5 100644 (file)
@@ -49,7 +49,7 @@ function photos_init(App $a) {
                $a->profile_uid = $user[0]['uid'];
                $is_owner = (local_user() && (local_user() == $a->profile_uid));
 
-               $profile = Profile::getProfiledataByNick($nick, $a->profile_uid);
+               $profile = Profile::getByNickname($nick, $a->profile_uid);
 
                $account_type = Contact::getAccountType($profile);
 
index 9fab38b86a6b2ef4521dc61b210b68caad45817a..1a9f57a39687c2a2c123c9809b694bd17edd126d 100644 (file)
@@ -42,7 +42,7 @@ function videos_init(App $a) {
                $a->data['user'] = $user[0];
                $a->profile_uid = $user[0]['uid'];
 
-               $profile = Profile::getProfiledataByNick($nick, $a->profile_uid);
+               $profile = Profile::getByNickname($nick, $a->profile_uid);
 
                $account_type = Contact::getAccountType($profile);
 
index 7df1623e1a7dd5ff1050894d5566af7596533954..573af02c94f1c90d51ff446d37f962fb575ac607 100644 (file)
@@ -60,7 +60,7 @@ class Profile
 
        /**
         *
-        * @brief Loads a profile into the page sidebar.
+        * Loads a profile into the page sidebar.
         *
         * The function requires a writeable copy of the main App structure, and the nickname
         * of a registered local account.
@@ -77,6 +77,7 @@ class Profile
         *      the theme is chosen before the _init() function of a theme is run, which will usually
         *      load a lot of theme-specific content
         *
+        * @brief Loads a profile into the page sidebar.
         * @param object  $a            App
         * @param string  $nickname     string
         * @param int     $profile      int
@@ -106,7 +107,7 @@ class Profile
                        }
                }
 
-               $pdata = self::getProfiledataByNick($nickname, $user[0]['uid'], $profile);
+               $pdata = self::getByNickname($nickname, $user[0]['uid'], $profile);
 
                if (empty($pdata) && empty($profiledata)) {
                        logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
@@ -181,7 +182,7 @@ class Profile
        }
 
        /**
-        * @brief Get all profil data of a local user
+        * Get all profile data of a local user
         *
         * If the viewer is an authenticated remote viewer, the profile displayed is the
         * one that has been configured for his/her viewing in the Contact manager.
@@ -190,12 +191,13 @@ class Profile
         *
         * Includes all available profile data
         *
+        * @brief Get all profile data of a local user
         * @param string $nickname nick
         * @param int    $uid      uid
         * @param int    $profile_id  ID of the profile
-        * @returns array
+        * @return array
         */
-       public static function getProfiledataByNick($nickname, $uid = 0, $profile_id = 0)
+       public static function getByNickname($nickname, $uid = 0, $profile_id = 0)
        {
                if (remote_user() && count($_SESSION['remote'])) {
                        foreach ($_SESSION['remote'] as $visitor) {
@@ -243,11 +245,12 @@ class Profile
        }
 
        /**
-        * @brief Formats a profile for display in the sidebar.
+        * Formats a profile for display in the sidebar.
         *
         * It is very difficult to templatise the HTML completely
         * because of all the conditional logic.
         *
+        * @brief Formats a profile for display in the sidebar.
         * @param array $profile
         * @param int $block
         * @param boolean $show_connect Show connect link
@@ -997,7 +1000,7 @@ class Profile
        }
 
        /**
-        * @brief Get the user ID of the page owner
+        * Get the user ID of the page owner.
         *
         * Used from within PCSS themes to set theme parameters. If there's a
         * puid request variable, that is the "page owner" and normally their theme
@@ -1005,6 +1008,7 @@ class Profile
         * system pconfig, which means they don't want to see anybody else's theme
         * settings except their own while on this site.
         *
+        * @brief Get the user ID of the page owner
         * @return int user ID
         *
         * @note Returns local_user instead of user ID if "always_my_theme"