Happy New Year!
[platal.git] / classes / direnum.php
CommitLineData
e39e72a6
RB
1<?php
2/***************************************************************************
5e1513f6 3 * Copyright (C) 2003-2011 Polytechnique.org *
e39e72a6
RB
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
98925aab 22// {{{ class DirEnum
e39e72a6
RB
23/** This class stores all data for the different kinds of fields.
24 * It is only a dispatcher for the various DirEnum_XXX classes.
25 */
26class DirEnum
27{
28 /** Name of availables Enumerations
29 * Each of these consts contains the basename of the class (its full name
30 * being DE_$basename).
31 */
5c32cc1a 32 const NAMETYPES = 'nametypes';
b270577e 33 const NAMES = 'names';
5c32cc1a 34
21b67462 35 const BINETS = 'binets';
5ab3ef57 36 const GROUPESX = 'groupesx';
21b67462 37 const SECTIONS = 'sections';
5ab3ef57 38
fb3b6547
RB
39 const EDUSCHOOLS = 'educationschools';
40 const EDUDEGREES = 'educationdegrees';
41 const EDUFIELDS = 'educationfields';
5ab3ef57 42
7f7ef715
RB
43 const CORPS = 'corps';
44 const CORPSRANKS = 'corpsranks';
45
21b67462
RB
46 const NATIONALITIES = 'nationalities';
47 const COUNTRIES = 'countries';
5ab3ef57 48 const ADMINAREAS = 'adminareas';
e429cd03 49 const SUBADMINAREAS = 'subadminareas';
5ab3ef57
RB
50 const LOCALITIES = 'localities';
51
52 const COMPANIES = 'companies';
5ab3ef57 53 const JOBDESCRIPTION = 'jobdescription';
3ac45f10 54 const JOBTERMS = 'jobterms';
5ab3ef57 55
21b67462 56 const NETWORKS = 'networking';
e39e72a6 57
3ad5702f
RB
58 const MEDALS = 'medals';
59
20b087ff 60 const ACCOUNTTYPES = 'accounttypes';
b47cc6f0 61 const SKINS = 'skins';
20b087ff 62
e39e72a6
RB
63 static private $enumerations = array();
64
65 static private function init($type)
66 {
5b98acfa 67 if (Platal::globals()->cacheEnabled() && S::has('__DE_' . $type)) {
cf570028
FB
68 self::$enumerations[$type] = S::v('__DE_' . $type);
69 } else {
70 $cls = "DE_" . ucfirst($type);
71 $obj = new $cls();
72 self::$enumerations[$type] = $obj;
5b98acfa
FB
73 if (Platal::globals()->cacheEnabled()
74 && $obj->capabilities & DirEnumeration::SAVE_IN_SESSION) {
cf570028
FB
75 S::set('__DE_' . $type, $obj);
76 }
77 }
e39e72a6
RB
78 }
79
80 /** Retrieves all options for a given type
81 * @param $type Type of enum for which options are requested
2998edf1 82 * @return Array of the results
e39e72a6 83 */
cf570028 84 static public function getOptions($type)
e39e72a6 85 {
e39e72a6
RB
86 if (!array_key_exists($type, self::$enumerations)) {
87 self::init($type);
88 }
89 $obj = self::$enumerations[$type];
2998edf1 90 if ($obj->capabilities & DirEnumeration::HAS_OPTIONS) {
cf570028 91 return call_user_func(array($obj, 'getOptions'));
2998edf1
RB
92 } else {
93 return array();
94 }
e39e72a6 95 }
21b67462 96
a137e407
RB
97 /** Retrieves all options for a given type
98 * @param $type Type of enum for which options are requested
2998edf1 99 * @return PlIterator over the results
a137e407 100 */
cf570028 101 static public function getOptionsIter($type)
a137e407 102 {
a137e407
RB
103 if (!array_key_exists($type, self::$enumerations)) {
104 self::init($type);
105 }
106 $obj = self::$enumerations[$type];
ffd70398
PC
107 $args = func_get_args();
108 array_shift($args);
2998edf1 109 if ($obj->capabilities & DirEnumeration::HAS_OPTIONS) {
ffd70398 110 return call_user_func_array(array($obj, 'getOptionsIter'), $args);
2998edf1
RB
111 } else {
112 return PlIteratorUtils::fromArray(array());
113 }
a137e407
RB
114 }
115
30b9ca46
RB
116 /** Retrieves all options with number of profiles for autocompletion
117 * @param $type Type of enum for which options are requested
118 * @param $text Text to autocomplete
2998edf1 119 * @return PlIterator over the results
30b9ca46 120 */
cf570028 121 static public function getAutoComplete($type, $text)
30b9ca46 122 {
30b9ca46
RB
123 if (!array_key_exists($type, self::$enumerations)) {
124 self::init($type);
125 }
126 $obj = self::$enumerations[$type];
2998edf1 127 if ($obj->capabilities & DirEnumeration::HAS_AUTOCOMP) {
cf570028 128 return call_user_func(array($obj, 'getAutoComplete'), $text);
2998edf1
RB
129 } else {
130 return PlIteratorUtils::fromArray(array());
131 }
30b9ca46
RB
132 }
133
98925aab
RB
134 /** Retrieves a list of IDs for a given type
135 * @param $type Type of enum for which IDs are requested
136 * @param $text Text to search in enum valuees
137 * @param $mode Mode of search for those IDs (prefix/suffix/infix)
138 */
69ef14a5 139 static public function getIDs($type, $text, $mode = XDB::WILDCARD_EXACT)
21b67462 140 {
21b67462
RB
141 if (!array_key_exists($type, self::$enumerations)) {
142 self::init($type);
143 }
144 $obj = self::$enumerations[$type];
2998edf1 145 if ($obj->capabilities & DirEnumeration::HAS_OPTIONS) {
69ef14a5 146 return call_user_func(array($obj, 'getIDs'), $text, $mode);
2998edf1
RB
147 } else {
148 return array();
149 }
21b67462 150 }
69ef14a5
FB
151
152 /** Retrieves a single ID for a given type.
153 * @param $type Type of the enum for which an ID is requested
154 * @param $text Text to search in enum values
155 * @param $mode Mode of search of that ID (prefix/suffix/infix/exact)
156 */
157 static public function getID($type, $text, $mode = XDB::WILDCARD_EXACT)
158 {
cf570028
FB
159 $ids = self::getIDs($type, $text, $mode);
160 return array_shift($ids);
69ef14a5 161 }
e39e72a6 162}
98925aab 163// }}}
e39e72a6 164
98925aab 165// {{{ class DirEnumeration
e39e72a6
RB
166abstract class DirEnumeration
167{
2998edf1
RB
168 const AUTOCOMPLETE_LIMIT = 11;
169
170 const HAS_OPTIONS = 0x001;
171 const HAS_AUTOCOMP = 0x002;
cf570028 172 const SAVE_IN_SESSION = 0x004;
2998edf1
RB
173
174 public $capabilities = 0x003; // self::HAS_OPTIONS | self::HAS_AUTOCOMP;
175
e39e72a6
RB
176 /** An internal array of ID => optionTxt
177 */
9ed7f5bc 178 protected $options = null;
e39e72a6 179
21b67462
RB
180 /** Description of the MySQL storage of the fields
181 */
e39e72a6
RB
182 protected $idfield = 'id';
183 protected $valfield = 'text';
30b9ca46 184 protected $valfield2 = null;
e39e72a6 185 protected $from;
21b67462 186 protected $join = '';
e39e72a6
RB
187 protected $where = '';
188
30b9ca46
RB
189 /** Fields for autocompletion
190 */
191 protected $ac_join = ''; // Additional joins
192 protected $ac_where = null; // Additional where
193 protected $ac_beginwith = true; // Whether to search for 'x%' or for '%x%'
194 protected $ac_unique; // Which field is to be taken as unique
195 protected $ac_distinct = true; // Whether we want to keep only distinct valfield value
196 protected $ac_withid = true; // Do we want to fetch id too ?
197
9ed7f5bc
RB
198 protected function _fetchOptions()
199 {
200 if (is_null($this->options)) {
201 $this->loadOptions();
202 }
e39e72a6
RB
203 }
204
205 public function getOptions()
206 {
9ed7f5bc 207 $this->_fetchOptions();
e39e72a6
RB
208 return $this->options;
209 }
210
2998edf1 211 public function getOptionsIter()
a137e407 212 {
70bcaa84
FB
213 $options = $this->getOptions();
214 $options = self::expandArray($options);
215 return PlIteratorUtils::fromArray($options, 1, true);
a137e407
RB
216 }
217
30b9ca46 218 // {{{ function getIDs
21b67462
RB
219 /** Retrieves possible IDs for given text
220 * @param $text Text to search for IDs
221 * @param $mode Mode of search (PREFIX, SUFFIX, CONTAINS)
222 * @return An array of matching IDs ; if empty, input should be considered invalid
223 */
224 public function getIDs($text, $mode)
225 {
658b4c83 226 if ($mode == XDB::WILDCARD_EXACT) {
21b67462
RB
227 $options = $this->getOptions();
228 return array_keys($options, $text);
229 } else {
230 if ($this->where == null) {
231 $where = 'WHERE ';
232 } else {
233 $where = $this->where . ' AND ';
234 }
30b9ca46 235 $conds = array();
658b4c83 236 $conds[] = $this->valfield . XDB::formatWildcards($mode, $text);
30b9ca46 237 if ($this->valfield2 != null) {
658b4c83 238 $conds[] = $this->valfield2 . XDB::formatWildcards($mode, $text);
30b9ca46
RB
239 }
240 $where .= '(' . implode(' OR ', $conds) . ')';
241
21b67462
RB
242 return XDB::fetchColumn('SELECT ' . $this->idfield . '
243 FROM ' . $this->from . '
244 ' . $this->join . '
30b9ca46 245 ' . $where . '
21b67462
RB
246 GROUP BY ' . $this->idfield);
247 }
248 }
30b9ca46 249 // }}}
21b67462 250
eb872b24
RB
251 /** Builds a list of query parts for searching @$text in @$field :
252 * field LIKE 'text%', field LIKE '% text%', field LIKE '%-text%'
253 */
30b9ca46
RB
254 private function mkTests($field, $text)
255 {
256 $tests = array();
658b4c83 257 $tests[] = $field . XDB::formatWildcards(XDB::WILDCARD_PREFIX, $text);
30b9ca46 258 if (!$this->ac_beginwith) {
658b4c83
RB
259 $tests[] = $field . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, ' ' . $text);
260 $tests[] = $field . XDB::formatWildcards(XDB::WILDCARD_CONTAINS, '-' . $text);
30b9ca46
RB
261 }
262 return $tests;
263 }
264
2998edf1
RB
265 static protected function expandArray(array $tab, $keyname = 'id', $valname = 'field')
266 {
267 $res = array();
268 foreach ($tab as $key => $val) {
269 $res[$key] = array(
270 $keyname => $key,
271 $valname => $val,
272 );
273 }
274 return $res;
275 }
276
30b9ca46
RB
277 // {{{ function getAutoComplete
278 public function getAutoComplete($text)
279 {
280 $text = str_replace(array('%', '_'), '', $text);
281
282 if (is_null($this->ac_where) || $this->ac_where == '') {
283 $where = '';
284 } else {
285 $where = $this->ac_where . ' AND ';
286 }
287
288 $tests = $this->mkTests($this->valfield, $text);
289 if (!is_null($this->valfield2)) {
290 $tests = array_merge($tests, $this->mkTests($this->valfield2, $text));
291 }
292
293 $where .= '(' . implode(' OR ', $tests) . ')';
294
295 return XDB::iterator('SELECT ' . $this->valfield . ' AS field'
296 . ($this->ac_distinct ? (', COUNT(DISTINCT ' . $this->ac_unique . ') AS nb') : '')
70bcaa84 297 . ($this->ac_withid ? (', ' . $this->idfield . ' AS id') : '') . '
30b9ca46
RB
298 FROM ' . $this->from . '
299 ' . $this->ac_join . '
300 WHERE ' . $where . '
301 GROUP BY ' . $this->valfield . '
302 ORDER BY ' . ($this->ac_distinct ? 'nb DESC' : $this->valfield) . '
2998edf1 303 LIMIT ' . self::AUTOCOMPLETE_LIMIT);
30b9ca46
RB
304 }
305 // }}}
306
30b9ca46 307 // {{{ function loadOptions
e39e72a6
RB
308 /** The function used to load options
309 */
310 protected function loadOptions()
311 {
2998edf1
RB
312 $this->options = XDB::fetchAllAssoc('id', 'SELECT ' . $this->valfield . ' AS field,
313 ' . $this->idfield . ' AS id
314 FROM ' . $this->from . '
315 ' . $this->join . '
316 ' . $this->where . '
317 GROUP BY ' . $this->valfield . '
318 ORDER BY ' . $this->valfield);
e39e72a6 319 }
30b9ca46 320 // }}}
e39e72a6 321}
98925aab 322// }}}
e39e72a6 323
2998edf1
RB
324// {{{ class DE_WithSuboption
325/** A class for DirEnum with possibility to select only suboptions for a given parameter (country, school, ...)
326 */
327abstract class DE_WithSuboption extends DirEnumeration
328{
329 protected $optfield;
330
331 protected $suboptions = null;
332
333 protected function loadOptions()
334 {
335 $opts = XDB::fetchAllAssoc('id', 'SELECT ' . $this->valfield . ' AS field,
336 ' . $this->optfield . ' AS subid,
337 ' . $this->idfield . ' AS id
338 FROM ' . $this->from . '
339 ' . $this->join . '
340 ' . $this->where . '
341 GROUP BY ' . $this->valfield . '
342 ORDER BY ' . $this->valfield);
343 $this->options = array();
344 $this->suboptions = array();
345 foreach ($opts as $id => $opt) {
346 $this->options[$id] = $opt['field'];
347 if (!array_key_exists($opt['subid'], $this->suboptions)) {
348 $this->suboptions[$opt['subid']] = array();
349 }
350 $this->suboptions[$opt['subid']][$id] = $opt['field'];
351 }
352 }
353
354 public function getOptions($subid = null)
355 {
356 $this->_fetchOptions();
357 if ($subid == null) {
358 return $this->options;
359 } else if (array_key_exists($subid, $this->suboptions)) {
360 return $this->suboptions[$subid];
361 } else {
ffd70398 362 return array();
2998edf1
RB
363 }
364 }
365
366 public function getOptionsIter($subid = null)
367 {
368 return PlIteratorUtils::fromArray(self::expandArray($this->getOptions($subid)), 1, true);
369 }
370
371 public function getIDs($text, $mode, $subid = null)
372 {
373 if ($mode == XDB::WILDCARD_EXACT) {
374 $options = $this->getOptions($subid);
375 return array_keys($options, $text);
376 } else {
377 if ($this->where == null) {
378 $where = 'WHERE ';
379 } else {
380 $where = $this->where . ' AND ';
381 }
382 if ($subid != null && array_key_exists($subid, $this->suboptions)) {
383 $where .= XDB::format($this->optfield . ' = {?} AND ', $subid);
384 }
385
386 $conds = array();
387 $conds[] = $this->valfield . XDB::formatWildcards($mode, $text);
388 if ($this->valfield2 != null) {
389 $conds[] = $this->valfield2 . XDB::formatWildcards($mode, $text);
390 }
391 $where .= '(' . implode(' OR ', $conds) . ')';
392
393 return XDB::fetchColumn('SELECT ' . $this->idfield . '
394 FROM ' . $this->from . '
395 ' . $this->join . '
396 ' . $where . '
397 GROUP BY ' . $this->idfield);
398 }
399 }
400
401 public function getAutoComplete($text, $subid = null)
402 {
403 $text = str_replace(array('%', '_'), '', $text);
404
405 if (is_null($this->ac_where) || $this->ac_where == '') {
406 $where = '';
407 } else {
408 $where = $this->ac_where . ' AND ';
409 }
410
411 if ($subid != null && array_key_exists($subid, $this->suboptions)) {
412 $where .= XDB::format($this->optfield . ' = {?} AND ', $subid);
413 }
414
415 $tests = $this->mkTests($this->valfield, $text);
416 if (!is_null($this->valfield2)) {
417 $tests = array_merge($tests, $this->mkTests($this->valfield2, $text));
418 }
419
420 $where .= '(' . implode(' OR ', $tests) . ')';
421
422 return XDB::iterator('SELECT ' . $this->valfield . ' AS field'
423 . ($this->ac_distinct ? (', COUNT(DISTINCT ' . $this->ac_unique . ') AS nb') : '')
424 . ($this->ac_withid ? (', ' . $this->idfield . ' AS id') : '') . '
425 FROM ' . $this->from . '
426 ' . $this->ac_join . '
427 WHERE ' . $where . '
428 GROUP BY ' . $this->valfield . '
429 ORDER BY ' . ($this->ac_distinct ? 'nb DESC' : $this->valfield) . '
430 LIMIT ' . self::AUTOCOMPLETE_LIMIT);
431 }
432}
433// }}}
434
5c32cc1a
RB
435// {{{ class DE_NameTypes
436// returns 'system' names ('lastname', 'lastname_marital', ...)
437class DE_NameTypes extends DirEnumeration
438{
cf570028 439 public $capabilities = 0x005; // self::HAS_OPTIONS | self::SAVE_IN_SESSION;
2998edf1 440
5c32cc1a
RB
441 protected $from = 'profile_name_enum';
442 protected $valfield = 'type';
443}
444// }}}
445
b270577e
SJ
446// {{{ class DE_Names
447// returns 'system' names ('lastname', 'lastname_marital', ...)
448class DE_Names extends DirEnumeration
449{
450 public $capabilities = 0x005; // self::HAS_OPTIONS | self::SAVE_IN_SESSION;
451
452 protected $from = 'profile_name_enum';
453 protected $idfield = 'type';
454 protected $valfield = 'name';
455}
456// }}}
457
5ab3ef57
RB
458/** GROUPS
459 */
98925aab 460// {{{ class DE_Binets
e39e72a6
RB
461class DE_Binets extends DirEnumeration
462{
5c8a71f2 463 protected $from = 'profile_binet_enum';
30b9ca46 464
5c8a71f2 465 protected $ac_join = 'INNER JOIN profile_binets ON (profile_binet_enum.id = profile_binets.binet_id)';
bdd977d7 466 protected $ac_unique = 'profile_binets.pid';
e39e72a6 467}
98925aab
RB
468// }}}
469
470// {{{ class DE_Sections
e39e72a6
RB
471class DE_Sections extends DirEnumeration
472{
5c8a71f2 473 protected $from = 'profile_section_enum';
30b9ca46 474
5c8a71f2 475 protected $ac_join = 'INNER JOIN profiles ON (profiles.section = profile_section_enum.id)';
30b9ca46 476 protected $ac_unique = 'profiles.pid';
e39e72a6 477}
98925aab
RB
478// }}}
479
5ab3ef57
RB
480// {{{ class DE_GroupesX
481class DE_GroupesX extends DirEnumeration
482{
2998edf1
RB
483 protected $idfield = 'groups.id';
484 protected $valfield = 'groups.nom';
485 protected $valfield2 = 'groups.diminutif';
486 protected $from = 'groups';
5ab3ef57
RB
487 protected $where = 'WHERE (cat = \'GroupesX\' OR cat = \'Institutions\') AND pub = \'public\'';
488
70bcaa84 489 protected $ac_join = "INNER JOIN group_members ON (groups.id = group_members.asso_id
2998edf1
RB
490 AND (groups.cat = 'GroupesX' OR groups.cat = 'Institutions')
491 AND groups.pub = 'public')";
492 protected $ac_unique = 'group_members.uid';
5ab3ef57
RB
493}
494// }}}
495
496/** EDUCATION
497 */
fb3b6547
RB
498// {{{ class DE_EducationSchools
499class DE_EducationSchools extends DirEnumeration
e39e72a6 500{
70bcaa84 501 protected $idfield = 'profile_education_enum.id';
2998edf1
RB
502 protected $valfield = 'profile_education_enum.name';
503 protected $valfield2 = 'profile_education_enum.abbreviation';
30b9ca46
RB
504 protected $from = 'profile_education_enum';
505
506 protected $ac_join = 'INNER JOIN profile_education ON (profile_education.eduid = profile_education_enum.id)';
ce0b2c6f 507 protected $ac_unique = 'profile_education.pid';
e39e72a6 508}
98925aab
RB
509// }}}
510
fb3b6547
RB
511// {{{ class DE_EducationDegrees
512class DE_EducationDegrees extends DirEnumeration
e39e72a6 513{
2998edf1 514 public $capabilities = self::HAS_OPTIONS;
21b67462 515
2998edf1
RB
516 protected $idfield = 'profile_education_degree.degreeid';
517 protected $optfield = 'profile_education_degree.eduid';
518 protected $valfield = 'profile_education_degree_enum.degree';
519 protected $from = 'profile_education_degree_enum';
520 protected $join = 'INNER JOIN profile_education_degree ON (profile_education_degree.degreeid = profile_education_degree_enum.id)';
e5fb8f87 521
21b67462 522}
98925aab
RB
523// }}}
524
fb3b6547
RB
525// {{{ class DE_EducationFields
526class DE_EducationFields extends DirEnumeration
21b67462 527{
2998edf1 528 protected $valfield = 'profile_education_field_enum.field';
30b9ca46
RB
529 protected $from = 'profile_education_field_enum';
530
531 protected $ac_join = 'INNER JOIN profile_education ON (profile_education.fieldid = profile_education_field_enum.id)';
ce0b2c6f 532 protected $ac_unique = 'profile_education.pid';
e39e72a6 533}
98925aab
RB
534// }}}
535
7f7ef715
RB
536// {{{ class DE_Corps
537class DE_Corps extends DirEnumeration
538{
fe8c06e0
RB
539 protected $idfield = 'profile_corps_enum.id';
540 protected $valfield = 'profile_corps_enum.name';
541 protected $valfield2 = 'profile_corps_enum.abbrev';
542 protected $from = 'profile_corps_enum';
7f7ef715 543
fe8c06e0
RB
544 protected $ac_unique = 'profile_corps.pid';
545 protected $ac_join = 'INNER JOIN profile_corps ON (profile_corps.current_corpsid = profile_corps_enum.id)';
7f7ef715
RB
546}
547// }}}
548
549// {{{ class DE_CorpsRanks
550class DE_CorpsRanks extends DirEnumeration
551{
fe8c06e0
RB
552 protected $idfield = 'profile_corps_rank_enum.id';
553 protected $valfield = 'profile_corps_rank_enum.name';
554 protected $valfield2 = 'profile_corps_rank_enum.abbrev';
555 protected $from = 'profile_corps_rank_enum';
7f7ef715 556
fe8c06e0
RB
557 protected $ac_unique = 'profile_corps.pid';
558 protected $ac_join = 'INNER JOIN profile_corps ON (profile_corps.rankid = profile_corps_rank_enum.id)';
7f7ef715
RB
559}
560// }}}
561
5ab3ef57
RB
562/** GEOLOC
563 */
98925aab 564// {{{ class DE_Nationalities
e39e72a6
RB
565class DE_Nationalities extends DirEnumeration
566{
2998edf1
RB
567 protected $idfield = 'geoloc_countries.iso_3166_1_a2';
568 protected $valfield = 'geoloc_countries.nationalityFR';
569 protected $valfield2 = 'geoloc_countries.nationality';
570 protected $from = 'geoloc_countries';
571 protected $join = 'INNER JOIN profiles ON (geoloc_countries.iso_3166_1_a2 IN (profiles.nationality1, profiles.nationality2, profiles.nationality3))';
30b9ca46 572
2998edf1 573 protected $ac_join = 'INNER JOIN profiles ON (geoloc_countries.iso_3166_1_a2 IN (profiles.nationality1, profiles.nationality2, profiles.nationality3))';
30b9ca46 574 protected $ac_unique = 'profiles.pid';
e39e72a6 575}
98925aab
RB
576// }}}
577
578// {{{ class DE_Countries
e39e72a6
RB
579class DE_Countries extends DirEnumeration
580{
2998edf1 581 protected $idfield = 'geoloc_countries.iso_3166_1_a2';
1c305d4c
SJ
582 protected $valfield = 'geoloc_countries.country';
583 protected $valfield2 = 'geoloc_countries.countryEn';
30b9ca46
RB
584 protected $from = 'geoloc_countries';
585
70bcaa84 586 protected $ac_join = 'INNER JOIN profile_addresses ON (geoloc_countries.iso_3166_1_a2 = profile_addresses.countryId)';
30b9ca46 587 protected $ac_unique = 'profile_addresses.pid';
e39e72a6 588}
98925aab
RB
589// }}}
590
591// {{{ class DE_AdminAreas
2998edf1 592class DE_AdminAreas extends DE_WithSuboption
e39e72a6 593{
2998edf1
RB
594 protected $idfield = 'geoloc_administrativeareas.id';
595 protected $optfield = 'geoloc_administrativeareas.country';
596 protected $valfield = 'geoloc_administrativeareas.name';
597 protected $from = 'geoloc_administrativeareas';
9ed7f5bc 598
2998edf1
RB
599 protected $ac_join = 'INNER JOIN profile_addresses ON (profile_addresses.administrativeAreaId = geoloc_administrativeareas.id)';
600 protected $ac_unique = 'profile_addresses.pid';
e39e72a6 601}
98925aab
RB
602// }}}
603
e429cd03
SJ
604// {{{ class DE_SubAdminAreas
605class DE_SubAdminAreas extends DE_WithSuboption
606{
607 protected $idfield = 'geoloc_subadministrativeareas.id';
608 protected $optfield = 'geoloc_subadministrativeareas.administrativearea';
609 protected $valfield = 'geoloc_subadministrativeareas.name';
610 protected $from = 'geoloc_subadministrativeareas';
611
612 protected $ac_join = 'INNER JOIN profile_addresses ON (profile_addresses.subadministrativeAreaId = geoloc_subadministrativeareas.id)';
613 protected $ac_unique = 'profile_addresses.pid';
614}
615// }}}
616
5ab3ef57
RB
617// {{{ class DE_Localities
618class DE_Localities extends DirEnumeration
e39e72a6 619{
70bcaa84 620 protected $idfield = 'geoloc_localities.id';
2998edf1
RB
621 protected $valfield = 'geoloc_localities.name';
622 protected $from = 'geoloc_localities';
30b9ca46 623
70bcaa84 624 protected $ac_join = 'INNER JOIN profile_addresses ON (profile_addresses.localityID = geoloc_localities.id)';
2998edf1 625 protected $ac_unique = 'profile_addresses.pid';
5ab3ef57
RB
626}
627// }}}
628
629/** JOBS
630 */
631// {{{ class DE_Companies
632class DE_Companies extends DirEnumeration
633{
70bcaa84 634 protected $idfield = 'profile_job_enum.id';
2998edf1
RB
635 protected $valfield = 'profile_job_enum.name';
636 protected $valfield2 = 'profile_job_enum.acronym';
637 protected $from = 'profile_job_enum';
5ab3ef57 638
2998edf1 639 protected $ac_join = 'INNER JOIN profile_job ON (profile_job.jobid = profile_job_enum.id)';
ce0b2c6f 640 protected $ac_unique = 'profile_job.pid';
e39e72a6 641}
98925aab
RB
642// }}}
643
5ab3ef57 644// {{{ class DE_JobDescription
70bcaa84 645class DE_JobDescription extends DirEnumeration
5ab3ef57 646{
2998edf1
RB
647 protected $valfield = 'profile_job.description';
648 protected $from = 'profile_job';
649 protected $idfield = 'profile_job.pid';
5ab3ef57 650
2998edf1 651 protected $ac_unique = 'profile_job.pid';
5ab3ef57
RB
652}
653// }}}
654
3ac45f10
PC
655// {{{ class DE_JobTerms
656class DE_JobTerms extends DirEnumeration
657{
658 // {{{ function getAutoComplete
659 public function getAutoComplete($text)
660 {
661 $tokens = JobTerms::tokenize($text.'%');
662 if (count($tokens) == 0) {
663 return PlIteratorUtils::fromArray(array());
664 }
665 $token_join = JobTerms::token_join_query($tokens, 'e');
666 return XDB::iterator('SELECT e.jtid AS id, e.full_name AS field, COUNT(DISTINCT p.pid) AS nb
667 FROM profile_job_term_enum AS e
668 INNER JOIN profile_job_term_relation AS r ON (r.jtid_1 = e.jtid)
669 INNER JOIN profile_job_term AS p ON (r.jtid_2 = p.jtid)
670 '.$token_join.'
671 GROUP BY e.jtid
672 ORDER BY nb DESC, field
673 LIMIT ' . self::AUTOCOMPLETE_LIMIT);
674 }
675 // }}}
676}
677// }}}
678
5ab3ef57
RB
679/** NETWORKING
680 */
98925aab 681// {{{ class DE_Networking
e39e72a6
RB
682class DE_Networking extends DirEnumeration
683{
1f5cd004 684 protected $idfield = 'profile_networking_enum.nwid';
30b9ca46 685 protected $valfield = 'profile_networking_enum.name';
e39e72a6 686 protected $from = 'profile_networking_enum';
30b9ca46
RB
687
688
1f5cd004 689 protected $ac_join = 'INNER JOIN profile_networking ON (profile_networking.nwid = profile_networking_enum.nwid)';
ce0b2c6f 690 protected $ac_unique = 'profile_networking.pid';
e39e72a6 691}
98925aab 692// }}}
69ef14a5 693
eb872b24
RB
694/** MEDALS
695 */
696// {{{ class DE_Medals
697class DE_Medals extends DirEnumeration
698{
699 protected $from = 'profile_medal_enum';
700
701 protected $ac_join = 'INNER JOIN profile_medals ON (profile_medals.mid = profile_medal_enum.id)';
702 protected $ac_unique = 'profile_medals.pid';
703}
704// }}}
705
20b087ff
FB
706/** ACCOUNTS
707 */
708// {{{ class DE_AccountTypes
709class DE_AccountTypes extends DirEnumeration
710{
711 public $capabilities = 0x005; // self::HAS_OPTIONS | self::SAVE_IN_SESSION;
712
713 protected $from = 'account_types';
714 protected $valfield = 'perms';
715 protected $idfield = 'type';
716}
717// }}}
718
b47cc6f0
FB
719// {{{ class DE_Skins
720class DE_Skins extends DirEnumeration
721{
722 public $capabilities = 0x005; // self::HAS_OPTIONS | self::SAVE_IN_SESSION;
723
724 protected $from = 'skins';
725 protected $valfield = 'name';
726 protected $idfield = 'skin_tpl';
727}
728// }}}
729
69ef14a5 730// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
e39e72a6 731?>