2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Javascript escaping functions.
12 * Format a string so it can be a string inside JavaScript code inside an
13 * eventhandler (onclick, onchange, on..., ).
14 * This function is used to displays a javascript confirmation box for
15 * "DROP/DELETE/ALTER" queries.
17 * @uses PMA_escapeJsString()
18 * @uses PMA_backquote()
20 * @uses htmlspecialchars()
22 * @param string $a_string the string to format
23 * @param boolean $add_backquotes whether to add backquotes to the string or not
25 * @return string the formatted string
29 function PMA_jsFormat($a_string = '', $add_backquotes = true)
31 if (is_string($a_string)) {
32 $a_string = htmlspecialchars($a_string);
33 $a_string = PMA_escapeJsString($a_string);
35 * @todo what is this good for?
37 $a_string = str_replace('#', '\\#', $a_string);
40 return (($add_backquotes) ?
PMA_backquote($a_string) : $a_string);
41 } // end of the 'PMA_jsFormat()' function
44 * escapes a string to be inserted as string a JavaScript block
45 * enclosed by <![CDATA[ ... ]]>
46 * this requires only to escape ' with \' and end of script block
48 * We also remove NUL byte as some browsers (namely MSIE) ignore it and
49 * inserting it anywhere inside </script would allow to bypass this check.
52 * @uses preg_replace()
53 * @param string $string the string to be escaped
54 * @return string the escaped string
56 function PMA_escapeJsString($string)
58 return preg_replace('@</script@i', '</\' + \'script',
68 * Prints an javascript assignment with proper escaping of a value
69 * and support for assigning array of strings.
71 * @param string $key Name of value to set
72 * @param mixed $value Value to set, can be either string or array of strings
74 function PMA_printJsValue($key, $value) {
76 if (is_array($value)) {
78 foreach ($value as $id => $val) {
79 echo "'" . PMA_escapeJsString($val) . "',";
83 echo "'" . PMA_escapeJsString($value) . "';\n";