Move plugin 'icon' in the core.
[platal.git] / plugins / function.select_db_table.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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
22 function select_options($table,$valeur,$champ="text",$pad=false,
23 $where="",$join="",$group="")
24 {
25 $fields = 't.id,' . $champ;
26 $order = $champ;
27 if ($group) {
28 $fields .= ',' . $group;
29 $order = $group . ',' . $order;
30 }
31 $sql = "SELECT $fields FROM $table AS t $join $where ORDER BY $order";
32 $res = XDB::iterRow($sql);
33 $sel = ' selected="selected"';
34
35 // on ajoute une entree vide si $pad est vrai
36 $html = "";
37 if ($pad) {
38 $html.= '<option value="0"'.($valeur==0?$sel:"")."></option>\n";
39 }
40 $optgrp = null;
41 while (list($my_id,$my_text,$my_grp) = $res->next()) {
42 if ($my_grp != $optgrp) {
43 if (!is_null($optgrp)) {
44 $html .= '</optgroup>';
45 }
46 $html .= '<optgroup label="' . pl_entities($my_grp, ENT_QUOTES) . '">';
47 $optgrp = $my_grp;
48 }
49 $html .= sprintf("<option value=\"%s\" %s>%s</option>\n",
50 $my_id, $valeur==$my_id ? $sel : "", pl_entities($my_text));
51 }
52 if (!is_null($optgrp)) {
53 $html .= '</optgroup>';
54 }
55 return $html;
56 }
57
58 function smarty_function_select_db_table($params, &$smarty) {
59 if(empty($params['table']))
60 return;
61 if(empty($params['champ']))
62 $params['champ'] = 'text';
63 if(empty($params['pad']) || !($params['pad']))
64 $pad = false;
65 else
66 $pad = true;
67 if(empty($params['where']))
68 $params['where'] = '';
69 return select_options($params['table'], $params['valeur'], $params['champ'], $pad,
70 $params['where'], $params['join'], $params['group']);
71 }
72
73 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
74 ?>