Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-06-27 13:20:20 +0400
committerMichal Čihař <mcihar@suse.cz>2011-06-27 13:20:20 +0400
commite57f27e50ba565be52ed3d271d6c9076f2ae48fd (patch)
tree5fa4a201f6cfee05a500e42da92eea3be147c040 /libraries/relation.lib.php
parent327b3d14560dd8aa68da071a7661e6c12d4b5c41 (diff)
Remove @uses tags from docblocks
Diffstat (limited to 'libraries/relation.lib.php')
-rw-r--r--libraries/relation.lib.php124
1 files changed, 0 insertions, 124 deletions
diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php
index 7075cc83b6..9ac5282455 100644
--- a/libraries/relation.lib.php
+++ b/libraries/relation.lib.php
@@ -42,11 +42,6 @@ function PMA_query_as_controluser($sql, $show_error = true, $options = 0)
} // end of the "PMA_query_as_controluser()" function
/**
- * @uses $_SESSION['relation'][$GLOBALS['server']] for caching
- * @uses $GLOBALS['cfgRelation'] to set it
- * @uses $GLOBALS['server'] to ensure we are using server-specific pmadb
- * @uses PMA__getRelationsParam()
- * @uses PMA_printRelationsParamDiagnostic()
* @param bool $verbose whether to print diagnostic info
* @return array $cfgRelation
*/
@@ -70,12 +65,6 @@ function PMA_getRelationsParam($verbose = false)
/**
* prints out diagnostic info for pma relation feature
*
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['controllink']
- * @uses $cfg['Server']['pmadb']
- * @uses sprintf()
- * @uses PMA_printDiagMessageForFeature()
- * @uses PMA_printDiagMessageForParameter()
* @param array $cfgRelation
*/
function PMA_printRelationsParamDiagnostic($cfgRelation)
@@ -204,17 +193,6 @@ function PMA_printDiagMessageForParameter($parameter, $relation_parameter_set, $
* just a copy of the functions used for relations ;-)
* but added some stuff to check what will work
*
- * @uses $cfg['Server']['user']
- * @uses $cfg['Server']['pmadb']
- * @uses $cfg['Server']['verbose_check']
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['controllink']
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_select_db()
- * @uses PMA_backquote()
- * @uses PMA_query_as_controluser()
- * @uses PMA_DBI_fetch_row()
- * @uses PMA_DBI_free_result()
* @access protected
* @return array the relation parameters for the current user
*/
@@ -384,17 +362,6 @@ function PMA__getRelationsParam()
* optionally a given column in a table
*
* @access public
- * @uses $GLOBALS['controllink']
- * @uses $GLOBALS['information_schema_relations']
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_DBI_fetch_result()
- * @uses PMA_DBI_fetch_value()
- * @uses PMA_SQP_analyze()
- * @uses PMA_SQP_parse()
- * @uses count()
- * @uses strlen()
* @param string $db the name of the db to check for
* @param string $table the name of the table to check for
* @param string $column the name of the column to check for
@@ -491,12 +458,6 @@ function PMA_getForeigners($db, $table, $column = '', $source = 'both')
* Gets the display field of a table
*
* @access public
- * @uses $GLOBALS['controllink']
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_DBI_fetch_single_row()
- * @uses trim()
* @param string $db the name of the db to check for
* @param string $table the name of the table to check for
* @return string field name
@@ -542,8 +503,6 @@ function PMA_getDisplayField($db, $table)
* Gets the comments for all rows of a table or the db itself
*
* @access public
- * @uses PMA_DBI_get_columns()
- * @uses PMA_getDbComment()
* @param string the name of the db to check for
* @param string the name of the table to check for
* @return array [field_name] = comment
@@ -573,15 +532,6 @@ function PMA_getComments($db, $table = '')
* Gets the comment for a db
*
* @access public
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_num_rows()
- * @uses PMA_DBI_fetch_assoc()
- * @uses PMA_DBI_free_result()
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
- * @uses strlen()
* @param string the name of the db to check for
* @return string comment
*/
@@ -614,15 +564,6 @@ function PMA_getDbComment($db)
* Gets the comment for a db
*
* @access public
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_num_rows()
- * @uses PMA_DBI_fetch_assoc()
- * @uses PMA_DBI_free_result()
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
- * @uses strlen()
* @param string the name of the db to check for
* @return string comment
*/
@@ -653,11 +594,6 @@ function PMA_getDbComments()
/**
* Set a database comment to a certain value.
*
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
- * @uses strlen()
* @access public
* @param string $db the name of the db
* @param string $comment the value of the column
@@ -702,16 +638,6 @@ function PMA_setDbComment($db, $comment = '')
/**
* Set a SQL history entry
*
- * @uses $_SESSION['sql_history']
- * @uses $cfg['QueryHistoryDB']
- * @uses $cfg['QueryHistoryMax']
- * @uses PMA_getRelationsParam()
- * @uses PMA_query_as_controluser()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses count()
- * @uses md5()
- * @uses array_shift()
* @param string $db the name of the db
* @param string $table the name of the table
* @param string $username the username
@@ -770,13 +696,6 @@ function PMA_setHistory($db, $table, $username, $sqlquery)
/**
* Gets a SQL history entry
*
- * @uses $_SESSION['sql_history']
- * @uses $GLOBALS['controllink']
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_DBI_fetch_result()
- * @uses array_reverse()
* @param string $username the username
* @return array list of history items
* @access public
@@ -806,13 +725,6 @@ function PMA_getHistory($username)
* deletes entries that exceeds $cfg['QueryHistoryMax'], oldest first, for the
* given user
*
- * @uses $cfg['QueryHistoryMax']
- * @uses $cfg['QueryHistoryDB']
- * @uses $GLOBALS['controllink']
- * @uses PMA_backquote()
- * @uses PMA_sqlAddSlashes()
- * @uses PMA_query_as_controluser()
- * @uses PMA_DBI_fetch_value()
* @param string $username the username
* @access public
*/
@@ -846,15 +758,6 @@ function PMA_purgeHistory($username)
/**
* Prepares the dropdown for one mode
*
- * @uses $cfg['LimitChars']
- * @uses $cfg['NaturalOrder']
- * @uses PMA_strlen()
- * @uses htmlspecialchars()
- * @uses substr()
- * @uses uksort()
- * @uses ksort()
- * @uses natcasesort()
- * @uses asort()
* @param array $foreign the keys and values for foreigns
* @param string $data the current data of the dropdown
* @param string $mode the needed mode
@@ -918,11 +821,6 @@ function PMA__foreignDropdownBuild($foreign, $data, $mode)
/**
* Outputs dropdown with values of foreign fields
*
- * @uses $cfg['ForeignKeyMaxLimit']
- * @uses $cfg['ForeignKeyDropdownOrder']
- * @uses PMA__foreignDropdownBuild()
- * @uses PMA_isValid()
- * @uses implode()
* @param array array of the displayed row
* @param string the foreign field
* @param string the foreign field to display
@@ -995,15 +893,6 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data,
/**
* Gets foreign keys in preparation for a drop-down selector
*
- * @uses PMA_Table::countRecords()
- * @uses PMA_backquote()
- * @uses PMA_getDisplayField()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_DBI_fetch_value()
- * @uses PMA_DBI_free_result()
- * @uses PMA_DBI_query()
- * @uses PMA_DBI_num_rows()
- * @uses PMA_DBI_fetch_assoc()
* @param array array of the foreign keys
* @param string the foreign field name
* @param bool whether to override the total
@@ -1087,9 +976,6 @@ function PMA_getForeignData($foreigners, $field, $override_total, $foreign_filte
/**
* Finds all related tables
*
- * @uses $GLOBALS['controllink']
- * @uses $GLOBALS['cfgRelation']
- * @uses $GLOBALS['db']
* @param string whether to go from master to foreign or vice versa
* @return boolean always true
* @global array $tab_left the list of tables that we still couldn't connect
@@ -1141,10 +1027,6 @@ function PMA_getRelatives($from)
*
* usually called after a field in a table was renamed in tbl_alter.php
*
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
* @param string $db
* @param string $table
* @param string $field
@@ -1183,12 +1065,6 @@ function PMA_REL_renameField($db, $table, $field, $new_name)
/**
* Create a PDF page
*
- * @uses PMA_backquote()
- * @uses $GLOBALS['cfgRelation']['db']
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
- * @uses PMA_DBI_insert_id()
- * @uses $GLOBALS['controllink']
* @param string $newpage
* @param array $cfgRelation
* @param string $db