* Copyright (C) 2007-2010 Regis Houssin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * or see http://www.gnu.org/ */ /** * \file htdocs/lib/ajax.lib.php * \brief Page called by Ajax request for produts * \version $Id$ */ /** * Get value of an HTML field, do Ajax process and show result * @param htmlname HTML name of input field * @param url Url for request: /chemin/fichier.php * @param option More parameters on URL request * @param minLength Minimum number of chars to trigger tha Ajax search * @return string script complet */ function ajax_autocompleter($selected='',$htmlname,$url,$option='',$minLength=2) { $script = ''; $script.= ''; return $script; } /** * Get value of field, do Ajax process and return result * @param htmlname nom et id du champ * @param fields other fields to autocomplete * @param url chemin du fichier de reponse : /chemin/fichier.php * @return string script complet */ function ajax_multiautocompleter($htmlname,$fields,$url,$option='') { $script=''; $fields = php2js($fields); $script.= ''."\n"; $script.= ''; return $script; } /** * Show an ajax dialog * @param title Title of dialog box * @param message Message of dialog box * @param w Width of dialog box * @param h height of dialog box */ function ajax_dialog($title,$message,$w=350,$h=150) { global $langs; $msg.= '
'; $msg.= $message; $msg.= '
'."\n"; $msg.= ''; $msg.= "\n"; return $msg; } /** * * Enter description here ... * @param unknown_type $var */ function php2js($var) { if (is_array($var)) { $res = "["; $array = array(); foreach ($var as $a_var) { $array[] = php2js($a_var); } return "[" . join(",", $array) . "]"; } elseif (is_bool($var)) { return $var ? "true" : "false"; } elseif (is_int($var) || is_integer($var) || is_double($var) || is_float($var)) { return $var; } elseif (is_string($var)) { return "\"" . addslashes(stripslashes($var)) . "\""; } // autres cas: objets, on ne les gère pas return FALSE; } ?>