]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/ContactSelector.php
Remove usage of profile.gender
[friendica.git] / src / Content / ContactSelector.php
index a9c6bc269d9e80d7eac96322a93ec0ddca588022..64a2b5be9e4f4b92182a1f277a5408c88f27e6b2 100644 (file)
@@ -196,46 +196,6 @@ class ContactSelector
                return $network_icon;
        }
 
-       /**
-        * @param string $current optional, default empty
-        * @param string $suffix  optionsl, default empty
-        * @return string
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        */
-       public static function gender($current = "", $suffix = "")
-       {
-               $o = '';
-               $select = [
-                       ''                 => DI::l10n()->t('No answer'),
-                       'Male'             => DI::l10n()->t('Male'),
-                       'Female'           => DI::l10n()->t('Female'),
-                       'Currently Male'   => DI::l10n()->t('Currently Male'),
-                       'Currently Female' => DI::l10n()->t('Currently Female'),
-                       'Mostly Male'      => DI::l10n()->t('Mostly Male'),
-                       'Mostly Female'    => DI::l10n()->t('Mostly Female'),
-                       'Transgender'      => DI::l10n()->t('Transgender'),
-                       'Intersex'         => DI::l10n()->t('Intersex'),
-                       'Transsexual'      => DI::l10n()->t('Transsexual'),
-                       'Hermaphrodite'    => DI::l10n()->t('Hermaphrodite'),
-                       'Neuter'           => DI::l10n()->t('Neuter'),
-                       'Non-specific'     => DI::l10n()->t('Non-specific'),
-                       'Other'            => DI::l10n()->t('Other'),
-                       'Undecided'        => DI::l10n()->t('Undecided'),
-               ];
-
-               Hook::callAll('gender_selector', $select);
-
-               $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
-               foreach ($select as $neutral => $selection) {
-                       if ($selection !== 'NOTRANSLATION') {
-                               $selected = (($neutral == $current) ? ' selected="selected" ' : '');
-                               $o .= "<option value=\"$neutral\" $selected >$selection</option>";
-                       }
-               }
-               $o .= '</select>';
-               return $o;
-       }
-
        /**
         * @param string $current optional, default empty
         * @param string $suffix  optionsl, default empty