diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-02-11 22:32:46 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-02-11 22:32:46 +0000 |
commit | 67a01f300d7049e6d634b5a5d2e5aba49b271f2c (patch) | |
tree | 54c8d016d3ceab71751a55018724741c8d936136 /include/functions.inc.php | |
parent | 7e0459d7b48d900b630a5c395c5795adc75b49b5 (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/functions.inc.php')
-rw-r--r-- | include/functions.inc.php | 5 |
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 ) { |