From a25327580d5785ac583ed25bc8a21570348d783e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 8 Jan 2003 13:59:46 +0000 Subject: [PATCH] added function comments --- libraries/url_generating.lib.php3 | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/libraries/url_generating.lib.php3 b/libraries/url_generating.lib.php3 index 423feb819..57f7f123d 100644 --- a/libraries/url_generating.lib.php3 +++ b/libraries/url_generating.lib.php3 @@ -11,6 +11,24 @@ if (!defined('PMA_URL_GENERATION_LIB_INCLUDED')){ define('PMA_URL_GENERATION_LIB_INCLUDED', 1); + /** + * Generates text with hidden inputs. + * + * @param string optional database name + * @param string optional table name + * + * @return string string with input fields + * + * @global string the current language + * @global string the current conversion charset + * @global string the current server + * @global array the configuration array + * @global boolean whether recoding is allowed or not + * + * @access public + * + * @author nijel + */ function PMA_generate_common_hidden_inputs ($db = '', $table = '') { global $lang, $convcharset, $server; @@ -27,6 +45,24 @@ if (!defined('PMA_URL_GENERATION_LIB_INCLUDED')){ return $result; } + /** + * Generates text with URL parameters. + * + * @param string optional database name + * @param string optional table name + * + * @return string string with URL parameters + * + * @global string the current language + * @global string the current conversion charset + * @global string the current server + * @global array the configuration array + * @global boolean whether recoding is allowed or not + * + * @access public + * + * @author nijel + */ function PMA_generate_common_url ($db = '', $table = '') { global $lang, $convcharset, $server;