]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Merge pull request #5563 from MrPetovan/bug/5470-fix-various-notices
[friendica.git] / src / Content / ContactSelector.php
1 <?php
2 /**
3  * @file src/Content/ContactSelector.php
4  */
5 namespace Friendica\Content;
6
7 use Friendica\Core\Addon;
8 use Friendica\Core\L10n;
9 use Friendica\Database\DBA;
10
11 /**
12  * @brief ContactSelector class
13  */
14 class ContactSelector
15 {
16         /**
17          * @param string $current     current
18          * @param string $foreign_net network
19          */
20         public static function profileAssign($current, $foreign_net)
21         {
22                 $o = '';
23
24                 $disabled = (($foreign_net) ? ' disabled="true" ' : '');
25
26                 $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
27
28                 $s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
29                 $r = DBA::toArray($s);
30
31                 if (DBA::isResult($r)) {
32                         foreach ($r as $rr) {
33                                 $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
34                                 $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
35                         }
36                 }
37                 $o .= "</select>\r\n";
38                 return $o;
39         }
40
41         /**
42          * @param string  $current  current
43          * @param boolean $disabled optional, default false
44          * @return object
45          */
46         public static function pollInterval($current, $disabled = false)
47         {
48                 $dis = (($disabled) ? ' disabled="disabled" ' : '');
49                 $o = '';
50                 $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
51
52                 $rep = [
53                         0 => L10n::t('Frequently'),
54                         1 => L10n::t('Hourly'),
55                         2 => L10n::t('Twice daily'),
56                         3 => L10n::t('Daily'),
57                         4 => L10n::t('Weekly'),
58                         5 => L10n::t('Monthly')
59                 ];
60
61                 foreach ($rep as $k => $v) {
62                         $selected = (($k == $current) ? " selected=\"selected\" " : "");
63                         $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
64                 }
65                 $o .= "</select>\r\n";
66                 return $o;
67         }
68
69         /**
70          * @param string $s       network
71          * @param string $profile optional, default empty
72          * @return string
73          */
74         public static function networkToName($s, $profile = "")
75         {
76                 $nets = [
77                         NETWORK_DFRN     => L10n::t('Friendica'),
78                         NETWORK_OSTATUS  => L10n::t('OStatus'),
79                         NETWORK_FEED     => L10n::t('RSS/Atom'),
80                         NETWORK_MAIL     => L10n::t('Email'),
81                         NETWORK_DIASPORA => L10n::t('Diaspora'),
82                         NETWORK_ZOT      => L10n::t('Zot!'),
83                         NETWORK_LINKEDIN => L10n::t('LinkedIn'),
84                         NETWORK_XMPP     => L10n::t('XMPP/IM'),
85                         NETWORK_MYSPACE  => L10n::t('MySpace'),
86                         NETWORK_GPLUS    => L10n::t('Google+'),
87                         NETWORK_PUMPIO   => L10n::t('pump.io'),
88                         NETWORK_TWITTER  => L10n::t('Twitter'),
89                         NETWORK_DIASPORA2 => L10n::t('Diaspora Connector'),
90                         NETWORK_STATUSNET => L10n::t('GNU Social Connector'),
91                         NETWORK_PNUT      => L10n::t('pnut')
92                 ];
93
94                 Addon::callHooks('network_to_name', $nets);
95
96                 $search  = array_keys($nets);
97                 $replace = array_values($nets);
98
99                 $networkname = str_replace($search, $replace, $s);
100
101                 if ((in_array($s, [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS])) && ($profile != "")) {
102                         $r = DBA::fetchFirst("SELECT `gserver`.`platform` FROM `gcontact`
103                                         INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
104                                         WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile));
105
106                         if (DBA::isResult($r)) {
107                                 $networkname = $r['platform'];
108                         }
109                 }
110
111                 return $networkname;
112         }
113
114         /**
115          * @param string $current optional, default empty
116          * @param string $suffix  optionsl, default empty
117          */
118         public static function gender($current = "", $suffix = "")
119         {
120                 $o = '';
121                 $select = ['', L10n::t('Male'), L10n::t('Female'), L10n::t('Currently Male'), L10n::t('Currently Female'), L10n::t('Mostly Male'), L10n::t('Mostly Female'), L10n::t('Transgender'), L10n::t('Intersex'), L10n::t('Transsexual'), L10n::t('Hermaphrodite'), L10n::t('Neuter'), L10n::t('Non-specific'), L10n::t('Other'), L10n::t('Undecided')];
122
123                 Addon::callHooks('gender_selector', $select);
124
125                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
126                 foreach ($select as $selection) {
127                         if ($selection !== 'NOTRANSLATION') {
128                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
129                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
130                         }
131                 }
132                 $o .= '</select>';
133                 return $o;
134         }
135
136         /**
137          * @param string $current optional, default empty
138          * @param string $suffix  optionsl, default empty
139          */
140         public static function sexualPreference($current = "", $suffix = "")
141         {
142                 $o = '';
143                 $select = ['', L10n::t('Males'), L10n::t('Females'), L10n::t('Gay'), L10n::t('Lesbian'), L10n::t('No Preference'), L10n::t('Bisexual'), L10n::t('Autosexual'), L10n::t('Abstinent'), L10n::t('Virgin'), L10n::t('Deviant'), L10n::t('Fetish'), L10n::t('Oodles'), L10n::t('Nonsexual')];
144
145
146                 Addon::callHooks('sexpref_selector', $select);
147
148                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
149                 foreach ($select as $selection) {
150                         if ($selection !== 'NOTRANSLATION') {
151                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
152                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
153                         }
154                 }
155                 $o .= '</select>';
156                 return $o;
157         }
158
159         /**
160          * @param string $current optional, default empty
161          */
162         public static function maritalStatus($current = "")
163         {
164                 $o = '';
165                 $select = ['', L10n::t('Single'), L10n::t('Lonely'), L10n::t('Available'), L10n::t('Unavailable'), L10n::t('Has crush'), L10n::t('Infatuated'), L10n::t('Dating'), L10n::t('Unfaithful'), L10n::t('Sex Addict'), L10n::t('Friends'), L10n::t('Friends/Benefits'), L10n::t('Casual'), L10n::t('Engaged'), L10n::t('Married'), L10n::t('Imaginarily married'), L10n::t('Partners'), L10n::t('Cohabiting'), L10n::t('Common law'), L10n::t('Happy'), L10n::t('Not looking'), L10n::t('Swinger'), L10n::t('Betrayed'), L10n::t('Separated'), L10n::t('Unstable'), L10n::t('Divorced'), L10n::t('Imaginarily divorced'), L10n::t('Widowed'), L10n::t('Uncertain'), L10n::t('It\'s complicated'), L10n::t('Don\'t care'), L10n::t('Ask me')];
166
167                 Addon::callHooks('marital_selector', $select);
168
169                 $o .= '<select name="marital" id="marital-select" size="1" >';
170                 foreach ($select as $selection) {
171                         if ($selection !== 'NOTRANSLATION') {
172                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
173                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
174                         }
175                 }
176                 $o .= '</select>';
177                 return $o;
178         }
179 }