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