dd635915e99c7667de775a5d0f70858c20ed318d
2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 function education_options($current = 0)
24 $html = '<option value="-1"></option>';
25 $res = XDB
::iterator("SELECT e.id AS id, gc.countryFR AS country,
26 IF(CHAR_LENGTH(e.name) > 76, e.abbreviation, e.name) AS name
27 FROM profile_education_enum AS e
28 LEFT JOIN geoloc_countries AS gc ON (e.country = gc.iso_3166_1_a2)
29 WHERE EXISTS (SELECT *
30 FROM profile_education_degree AS d
32 ORDER BY gc.countryFR, e.name");
34 while ($arr_edu = $res->next()) {
35 if ($arr_edu["country"] != $country) {
36 $country = $arr_edu["country"];
37 $html .= "<optgroup label=" . $country . ">";
39 $html .= '<option value="' . $arr_edu["id"] . '"';
40 if ($arr_edu["id"] == $current) {
41 $html .= " selected='selected'";
43 $html .= '>' . htmlspecialchars($arr_edu["name"]) . "</option>\n";
48 /** pour appeller education_options depuis smarty
50 function _education_options_smarty($params)
52 if(!isset($params['selected'])) {
53 $params['selected'] = 0;
55 return education_options($params['selected']);
57 Platal
::page()->register_function('education_options', '_education_options_smarty');
59 /** affiche un Array javascript contenant les diplômes de chaque formation
61 function education_degree()
64 $res = XDB
::iterRow("SELECT eduid, degreeid
65 FROM profile_education_degree
67 $edu_degree = $res->next();
68 for ($eduid = 1; $edu_degree; ++
$eduid) {
70 if ($edu_degree['0'] == $eduid) {
71 $html .= $edu_degree['1'];
72 $edu_degree = $res->next();
73 while ($edu_degree['0'] == $eduid) {
74 $html .= ',' . $edu_degree['1'];
75 $edu_degree = $res->next();
85 Platal
::page()->register_function('education_degree', 'education_degree');
87 /** affiche tous les types possibles de diplômes
89 function education_degree_all()
91 $res = XDB
::query("SELECT id
92 FROM profile_education_degree_enum
94 return implode(',', $res->fetchColumn());
96 Platal
::page()->register_function('education_degree_all', 'education_degree_all');
98 /** affiche les noms de tous les diplômes possibles
100 function education_degree_name()
102 $res = XDB
::query("SELECT degree
103 FROM profile_education_degree_enum
105 return '"' . implode('","', $res->fetchColumn()) . '"';
107 Platal
::page()->register_function('education_degree_name', 'education_degree_name');
109 /** formatte une formation pour l'affichage
111 function education_fmt($name, $url, $degree, $grad_year, $field, $program, $sexe, $long)
113 $field = strtolower($field);
116 if ($grad_year ||
$field ||
$program) {
117 $txt .= "<span title=\"(";
120 if ($grad_year ||
$field) {
126 $txt .= "diplômée en $grad_year";
128 $txt .= "diplômé en $grad_year";
135 $txt .= "domaine : $field)\">";
139 if (($degree != "Lic.") ||
($long)) {
140 if (($degree != "Ing.") && ($degree != "Dipl.")) {
147 $txt .= "<a href=\"$url\" onclick=\"return popup(this)\">$name</a>";
157 function _education_fmt($params, &$smarty)
159 $params = new PlDict($params);
160 $edu = $params->v('edu');
161 if (!$params->has('sex')) {
162 $profile = $params->v('profile');
163 $sex = $profile->isFemale();
165 $sex = $params->b('sex');
167 return education_fmt($edu['school_short'], $edu['school_url'], $edu['degree_short'], $edu['grad_year'],
168 $edu['field'], $edu['program'], $sex, $params->b('long'));
170 Platal
::page()->register_function('education_fmt', '_education_fmt');
172 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: