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