]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
47df84f7a6f6d266acbe7a0c5dd1b5a40d05a665
[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 use Friendica\Database\DBM;
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::inArray($s);
31
32                 if (DBM::is_result($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                         NETWORK_DFRN     => L10n::t('Friendica'),
79                         NETWORK_OSTATUS  => L10n::t('OStatus'),
80                         NETWORK_FEED     => L10n::t('RSS/Atom'),
81                         NETWORK_MAIL     => L10n::t('Email'),
82                         NETWORK_DIASPORA => L10n::t('Diaspora'),
83                         NETWORK_FACEBOOK => L10n::t('Facebook'),
84                         NETWORK_ZOT      => L10n::t('Zot!'),
85                         NETWORK_LINKEDIN => L10n::t('LinkedIn'),
86                         NETWORK_XMPP     => L10n::t('XMPP/IM'),
87                         NETWORK_MYSPACE  => L10n::t('MySpace'),
88                         NETWORK_GPLUS    => L10n::t('Google+'),
89                         NETWORK_PUMPIO   => L10n::t('pump.io'),
90                         NETWORK_TWITTER  => L10n::t('Twitter'),
91                         NETWORK_DIASPORA2 => L10n::t('Diaspora Connector'),
92                         NETWORK_STATUSNET => L10n::t('GNU Social Connector'),
93                         NETWORK_PNUT      => L10n::t('pnut'),
94                         NETWORK_APPNET => L10n::t('App.net')
95                 ];
96
97                 Addon::callHooks('network_to_name', $nets);
98
99                 $search  = array_keys($nets);
100                 $replace = array_values($nets);
101
102                 $networkname = str_replace($search, $replace, $s);
103
104                 if ((in_array($s, [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS])) && ($profile != "")) {
105                         $r = dba::fetch_first("SELECT `gserver`.`platform` FROM `gcontact`
106                                         INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
107                                         WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile));
108
109                         if (DBM::is_result($r)) {
110                                 $networkname = $r['platform'];
111                         }
112                 }
113
114                 return $networkname;
115         }
116
117         /**
118          * @param string $current optional, default empty
119          * @param string $suffix  optionsl, default empty
120          */
121         public static function gender($current = "", $suffix = "")
122         {
123                 $o = '';
124                 $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')];
125
126                 Addon::callHooks('gender_selector', $select);
127
128                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
129                 foreach ($select as $selection) {
130                         if ($selection !== 'NOTRANSLATION') {
131                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
132                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
133                         }
134                 }
135                 $o .= '</select>';
136                 return $o;
137         }
138
139         /**
140          * @param string $current optional, default empty
141          * @param string $suffix  optionsl, default empty
142          */
143         public static function sexualPreference($current = "", $suffix = "")
144         {
145                 $o = '';
146                 $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')];
147
148
149                 Addon::callHooks('sexpref_selector', $select);
150
151                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
152                 foreach ($select as $selection) {
153                         if ($selection !== 'NOTRANSLATION') {
154                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
155                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
156                         }
157                 }
158                 $o .= '</select>';
159                 return $o;
160         }
161
162         /**
163          * @param string $current optional, default empty
164          */
165         public static function maritalStatus($current = "")
166         {
167                 $o = '';
168                 $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')];
169
170                 Addon::callHooks('marital_selector', $select);
171
172                 $o .= '<select name="marital" id="marital-select" size="1" >';
173                 foreach ($select as $selection) {
174                         if ($selection !== 'NOTRANSLATION') {
175                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
176                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
177                         }
178                 }
179                 $o .= '</select>';
180                 return $o;
181         }
182 }