aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-02-11 22:32:46 +0000
committerz0rglub <z0rglub@piwigo.org>2004-02-11 22:32:46 +0000
commit67a01f300d7049e6d634b5a5d2e5aba49b271f2c (patch)
tree54c8d016d3ceab71751a55018724741c8d936136 /include
parent7e0459d7b48d900b630a5c395c5795adc75b49b5 (diff)
adding phpdocumentor variables to function get_enums
git-svn-id: http://piwigo.org/svn/trunk@360 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions.inc.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php
index edaa1b057..acf78373a 100644
--- a/include/functions.inc.php
+++ b/include/functions.inc.php
@@ -24,8 +24,6 @@ include( PREFIX_INCLUDE.'./include/functions_group.inc.php' );
//----------------------------------------------------------- generic functions
-// get_enums returns an array containing the possible values of a enum field
-// in a table of the database.
/**
* possible values of an "enum" field
*
@@ -35,6 +33,9 @@ include( PREFIX_INCLUDE.'./include/functions_group.inc.php' );
* @param string table in the database
* @param string field name in this table
* @uses str_replace
+ * @uses explode
+ * @uses sizeof
+ * @uses substr
*/
function get_enums( $table, $field )
{