]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Merge pull request #4297 from hoergen/develop
[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\Database\DBM;
9 use Friendica\Protocol\Diaspora;
10 use 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::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 => t('Frequently'),
55                         1 => t('Hourly'),
56                         2 => t('Twice daily'),
57                         3 => t('Daily'),
58                         4 => t('Weekly'),
59                         5 => 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     => t('Friendica'),
79                         NETWORK_OSTATUS  => t('OStatus'),
80                         NETWORK_FEED     => t('RSS/Atom'),
81                         NETWORK_MAIL     => t('Email'),
82                         NETWORK_DIASPORA => t('Diaspora'),
83                         NETWORK_FACEBOOK => t('Facebook'),
84                         NETWORK_ZOT      => t('Zot!'),
85                         NETWORK_LINKEDIN => t('LinkedIn'),
86                         NETWORK_XMPP     => t('XMPP/IM'),
87                         NETWORK_MYSPACE  => t('MySpace'),
88                         NETWORK_GPLUS    => t('Google+'),
89                         NETWORK_PUMPIO   => t('pump.io'),
90                         NETWORK_TWITTER  => t('Twitter'),
91                         NETWORK_DIASPORA2 => t('Diaspora Connector'),
92                         NETWORK_STATUSNET => t('GNU Social Connector'),
93                         NETWORK_PNUT      => t('pnut'),
94                         NETWORK_APPNET => 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 = ['', 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')];
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 = ['', 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')];
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 = ['', 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')];
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 }