diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-12 08:38:10 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-12 08:38:10 -0700 |
commit | c164b0f3383dadc17a197bb3fb60cc9580bfead7 (patch) | |
tree | 6000a1db2183a2627066cb91bc05038e073acc85 | |
parent | 9c3b49a9a4cc392840f99d874f7c80547a409cb1 (diff) | |
download | brdo-c164b0f3383dadc17a197bb3fb60cc9580bfead7.tar.gz brdo-c164b0f3383dadc17a197bb3fb60cc9580bfead7.tar.bz2 |
Issue #1739592 by Albert Volkman, andy.hails, dawehner: Add return docs to a couple of functions
-rw-r--r-- | includes/bootstrap.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index ab693dc52..fe66b9ba0 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -2595,6 +2595,9 @@ function drupal_language_types() { /** * Returns TRUE if there is more than one language enabled. + * + * @return + * TRUE if more than one language is enabled. */ function drupal_multilingual() { // The "language_count" variable stores the number of enabled languages to @@ -2605,6 +2608,10 @@ function drupal_multilingual() { /** * Returns an array of the available language types. + * + * @return + * An array of all language types where the keys of each are the language type + * name and its value is its configurability (TRUE/FALSE). */ function language_types() { return array_keys(variable_get('language_types', drupal_language_types())); |