diff options
Diffstat (limited to 'modules/taxonomy/taxonomy.admin.inc')
-rw-r--r-- | modules/taxonomy/taxonomy.admin.inc | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 5ad7538aeb7..b8b6b3b5faa 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -52,10 +52,14 @@ function taxonomy_overview_vocabularies_submit($form, &$form_state) { } /** - * Theme the vocabulary overview as a sortable list of vocabularies. + * Returns HTML for the vocabulary overview form as a sortable list of vocabularies. + * + * @param $variables + * An associative array containing: + * - form: A render element representing the form. * - * @ingroup themeable * @see taxonomy_overview_vocabularies() + * @ingroup themeable */ function theme_taxonomy_overview_vocabularies($variables) { $form = $variables['form']; @@ -513,10 +517,14 @@ function taxonomy_overview_terms_submit($form, &$form_state) { } /** - * Theme the terms overview as a sortable list of terms. + * Returns HTML for a terms overview form as a sortable list of terms. + * + * @param $variables + * An associative array containing: + * - form: A render element representing the form. * - * @ingroup themeable * @see taxonomy_overview_terms() + * @ingroup themeable */ function theme_taxonomy_overview_terms($variables) { $form = $variables['form']; |