]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
d5efecb8060d420564ea2020417fd70cb5432ed8
[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\Core\Protocol;
10 use Friendica\Database\DBA;
11
12 /**
13  * @brief ContactSelector class
14  */
15 class ContactSelector
16 {
17         /**
18          * @param string $current     current
19          * @param string $foreign_net network
20          */
21         public static function profileAssign($current, $foreign_net)
22         {
23                 $o = '';
24
25                 $disabled = (($foreign_net) ? ' disabled="true" ' : '');
26
27                 $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
28
29                 $s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
30                 $r = DBA::toArray($s);
31
32                 if (DBA::isResult($r)) {
33                         foreach ($r as $rr) {
34                                 $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
35                                 $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
36                         }
37                 }
38                 $o .= "</select>\r\n";
39                 return $o;
40         }
41
42         /**
43          * @param string  $current  current
44          * @param boolean $disabled optional, default false
45          * @return object
46          */
47         public static function pollInterval($current, $disabled = false)
48         {
49                 $dis = (($disabled) ? ' disabled="disabled" ' : '');
50                 $o = '';
51                 $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
52
53                 $rep = [
54                         0 => L10n::t('Frequently'),
55                         1 => L10n::t('Hourly'),
56                         2 => L10n::t('Twice daily'),
57                         3 => L10n::t('Daily'),
58                         4 => L10n::t('Weekly'),
59                         5 => L10n::t('Monthly')
60                 ];
61
62                 foreach ($rep as $k => $v) {
63                         $selected = (($k == $current) ? " selected=\"selected\" " : "");
64                         $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
65                 }
66                 $o .= "</select>\r\n";
67                 return $o;
68         }
69
70         /**
71          * @param string $s       network
72          * @param string $profile optional, default empty
73          * @return string
74          */
75         public static function networkToName($s, $profile = "")
76         {
77                 $nets = [
78                         Protocol::DFRN      => L10n::t('Friendica'),
79                         Protocol::OSTATUS   => L10n::t('OStatus'),
80                         Protocol::FEED      => L10n::t('RSS/Atom'),
81                         Protocol::MAIL      => L10n::t('Email'),
82                         Protocol::DIASPORA  => L10n::t('Diaspora'),
83                         Protocol::ZOT       => L10n::t('Zot!'),
84                         Protocol::LINKEDIN  => L10n::t('LinkedIn'),
85                         Protocol::XMPP      => L10n::t('XMPP/IM'),
86                         Protocol::MYSPACE   => L10n::t('MySpace'),
87                         Protocol::GPLUS     => L10n::t('Google+'),
88                         Protocol::PUMPIO    => L10n::t('pump.io'),
89                         Protocol::TWITTER   => L10n::t('Twitter'),
90                         Protocol::DIASPORA2 => L10n::t('Diaspora Connector'),
91                         Protocol::STATUSNET => L10n::t('GNU Social Connector'),
92                         Protocol::PNUT      => L10n::t('pnut'),
93                 ];
94
95                 Addon::callHooks('network_to_name', $nets);
96
97                 $search  = array_keys($nets);
98                 $replace = array_values($nets);
99
100                 $networkname = str_replace($search, $replace, $s);
101
102                 if ((in_array($s, [Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])) && ($profile != "")) {
103                         $r = DBA::fetchFirst("SELECT `gserver`.`platform` FROM `gcontact`
104                                         INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
105                                         WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile));
106
107                         if (DBA::isResult($r)) {
108                                 $networkname = $r['platform'];
109                         }
110                 }
111
112                 return $networkname;
113         }
114
115         /**
116          * @param string $current optional, default empty
117          * @param string $suffix  optionsl, default empty
118          */
119         public static function gender($current = "", $suffix = "")
120         {
121                 $o = '';
122                 $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')];
123
124                 Addon::callHooks('gender_selector', $select);
125
126                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
127                 foreach ($select as $selection) {
128                         if ($selection !== 'NOTRANSLATION') {
129                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
130                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
131                         }
132                 }
133                 $o .= '</select>';
134                 return $o;
135         }
136
137         /**
138          * @param string $current optional, default empty
139          * @param string $suffix  optionsl, default empty
140          */
141         public static function sexualPreference($current = "", $suffix = "")
142         {
143                 $o = '';
144                 $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')];
145
146
147                 Addon::callHooks('sexpref_selector', $select);
148
149                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
150                 foreach ($select as $selection) {
151                         if ($selection !== 'NOTRANSLATION') {
152                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
153                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
154                         }
155                 }
156                 $o .= '</select>';
157                 return $o;
158         }
159
160         /**
161          * @param string $current optional, default empty
162          */
163         public static function maritalStatus($current = "")
164         {
165                 $o = '';
166                 $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')];
167
168                 Addon::callHooks('marital_selector', $select);
169
170                 $o .= '<select name="marital" id="marital-select" size="1" >';
171                 foreach ($select as $selection) {
172                         if ($selection !== 'NOTRANSLATION') {
173                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
174                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
175                         }
176                 }
177                 $o .= '</select>';
178                 return $o;
179         }
180 }