]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Rename DBM method calls to DBA method calls
[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::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 = [
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_FACEBOOK => L10n::t('Facebook'),
83                         NETWORK_ZOT      => L10n::t('Zot!'),
84                         NETWORK_LINKEDIN => L10n::t('LinkedIn'),
85                         NETWORK_XMPP     => L10n::t('XMPP/IM'),
86                         NETWORK_MYSPACE  => L10n::t('MySpace'),
87                         NETWORK_GPLUS    => L10n::t('Google+'),
88                         NETWORK_PUMPIO   => L10n::t('pump.io'),
89                         NETWORK_TWITTER  => L10n::t('Twitter'),
90                         NETWORK_DIASPORA2 => L10n::t('Diaspora Connector'),
91                         NETWORK_STATUSNET => L10n::t('GNU Social Connector'),
92                         NETWORK_PNUT      => L10n::t('pnut'),
93                         NETWORK_APPNET => L10n::t('App.net')
94                 ];
95
96                 Addon::callHooks('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, [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS])) && ($profile != "")) {
104                         $r = DBA::fetchFirst("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 (DBA::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 = ['', 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')];
124
125                 Addon::callHooks('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 = ['', 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')];
146
147
148                 Addon::callHooks('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 = ['', 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')];
168
169                 Addon::callHooks('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 }