]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/ContactSelector.php
Merge pull request #4243 from MrPetovan/task/switch-to-array-new-style
[friendica.git] / src / Content / ContactSelector.php
index bd8bcc989beefa14c74f1abb02dcc361e19d0d2e..4eb2e74aa298aed87909d6d454f3db4485dc1f27 100644 (file)
@@ -38,42 +38,25 @@ class ContactSelector
                return $o;
        }
 
-       private static function contact_reputation($current)
-       {
-               $o = '';
-               $o .= "<select id=\"contact-reputation-selector\" name=\"reputation\" />\r\n";
-
-               $rep = array(
-                       0 => t('Unknown | Not categorised'),
-                       1 => t('Block immediately'),
-                       2 => t('Shady, spammer, self-marketer'),
-                       3 => t('Known to me, but no opinion'),
-                       4 => t('OK, probably harmless'),
-                       5 => t('Reputable, has my trust')
-               );
-
-               foreach ($rep as $k => $v) {
-                       $selected = (($k == $current) ? " selected=\"selected\" " : "");
-                       $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
-               }
-               $o .= "</select>\r\n";
-               return $o;
-       }
-
+       /**
+        * @param string  $current  current
+        * @param boolean $disabled optional, default false
+        * @return object
+        */
        public static function pollInterval($current, $disabled = false)
        {
                $dis = (($disabled) ? ' disabled="disabled" ' : '');
                $o = '';
                $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
 
-               $rep = array(
+               $rep = [
                        0 => t('Frequently'),
                        1 => t('Hourly'),
                        2 => t('Twice daily'),
                        3 => t('Daily'),
                        4 => t('Weekly'),
                        5 => t('Monthly')
-               );
+               ];
 
                foreach ($rep as $k => $v) {
                        $selected = (($k == $current) ? " selected=\"selected\" " : "");
@@ -83,9 +66,14 @@ class ContactSelector
                return $o;
        }
 
+       /**
+        * @param string $s       network
+        * @param string $profile optional, default empty
+        * @return string
+        */
        public static function networkToName($s, $profile = "")
        {
-               $nets = array(
+               $nets = [
                        NETWORK_DFRN     => t('Friendica'),
                        NETWORK_OSTATUS  => t('OStatus'),
                        NETWORK_FEED     => t('RSS/Atom'),
@@ -103,7 +91,7 @@ class ContactSelector
                        NETWORK_STATUSNET => t('GNU Social Connector'),
                        NETWORK_PNUT      => t('pnut'),
                        NETWORK_APPNET => t('App.net')
-               );
+               ];
 
                call_hooks('network_to_name', $nets);
 
@@ -112,7 +100,7 @@ class ContactSelector
 
                $networkname = str_replace($search, $replace, $s);
 
-               if ((in_array($s, array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) && ($profile != "")) {
+               if ((in_array($s, [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS])) && ($profile != "")) {
                        $r = dba::fetch_first("SELECT `gserver`.`platform` FROM `gcontact`
                                        INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
                                        WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile));
@@ -124,4 +112,70 @@ class ContactSelector
 
                return $networkname;
        }
+
+       /**
+        * @param string $current optional, default empty
+        * @param string $suffix  optionsl, default empty
+        */
+       public static function gender($current = "", $suffix = "")
+       {
+               $o = '';
+               $select = ['', t('Male'), t('Female'), t('Currently Male'), t('Currently Female'), t('Mostly Male'), t('Mostly Female'), t('Transgender'), t('Intersex'), t('Transsexual'), t('Hermaphrodite'), t('Neuter'), t('Non-specific'), t('Other'), t('Undecided')];
+       
+               call_hooks('gender_selector', $select);
+       
+               $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
+               foreach ($select as $selection) {
+                       if ($selection !== 'NOTRANSLATION') {
+                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $o .= "<option value=\"$selection\" $selected >$selection</option>";
+                       }
+               }
+               $o .= '</select>';
+               return $o;
+       }
+       
+       /**
+        * @param string $current optional, default empty
+        * @param string $suffix  optionsl, default empty
+        */
+       public static function sexualPreference($current = "", $suffix = "")
+       {
+               $o = '';
+               $select = ['', t('Males'), t('Females'), t('Gay'), t('Lesbian'), t('No Preference'), t('Bisexual'), t('Autosexual'), t('Abstinent'), t('Virgin'), t('Deviant'), t('Fetish'), t('Oodles'), t('Nonsexual')];
+       
+       
+               call_hooks('sexpref_selector', $select);
+       
+               $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
+               foreach ($select as $selection) {
+                       if ($selection !== 'NOTRANSLATION') {
+                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $o .= "<option value=\"$selection\" $selected >$selection</option>";
+                       }
+               }
+               $o .= '</select>';
+               return $o;
+       }
+       
+       /**
+        * @param string $current optional, default empty
+        */
+       public static function maritalStatus($current = "")
+       {
+               $o = '';
+               $select = ['', t('Single'), t('Lonely'), t('Available'), t('Unavailable'), t('Has crush'), t('Infatuated'), t('Dating'), t('Unfaithful'), t('Sex Addict'), t('Friends'), t('Friends/Benefits'), t('Casual'), t('Engaged'), t('Married'), t('Imaginarily married'), t('Partners'), t('Cohabiting'), t('Common law'), t('Happy'), t('Not looking'), t('Swinger'), t('Betrayed'), t('Separated'), t('Unstable'), t('Divorced'), t('Imaginarily divorced'), t('Widowed'), t('Uncertain'), t('It\'s complicated'), t('Don\'t care'), t('Ask me')];
+       
+               call_hooks('marital_selector', $select);
+       
+               $o .= '<select name="marital" id="marital-select" size="1" >';
+               foreach ($select as $selection) {
+                       if ($selection !== 'NOTRANSLATION') {
+                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $o .= "<option value=\"$selection\" $selected >$selection</option>";
+                       }
+               }
+               $o .= '</select>';
+               return $o;
+       }
 }