From 97c6c1e007dba4923b2cc56993de79a0cffcfc86 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 10 Feb 2018 12:55:18 +0100 Subject: [PATCH] Manage_Table_SQL : Improve Documentation + add function count_error --- include/lib/manage_table_sql.class.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/include/lib/manage_table_sql.class.php b/include/lib/manage_table_sql.class.php index c5c965add..80e04a9d6 100644 --- a/include/lib/manage_table_sql.class.php +++ b/include/lib/manage_table_sql.class.php @@ -179,7 +179,13 @@ class Manage_Table_SQL { $this->aerror[$p_col]=$p_message; } - + /** + * returns the nb of errors found + */ + function count_error() + { + return count($this->aerror); + } /** * @brief retrieve the error message * @param $p_col column name @@ -200,9 +206,9 @@ class Manage_Table_SQL * Usually , you get the row of the table (get_table) , you check the conditions * if an condition is not met then you set the error with $this->set_error * - * if there are error returns false otherwise true + * if there are error (returns false otherwise true * - * @see set_error get_error + * @see set_error get_error count_error * @return boolean * @code function check()