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