diff options
Diffstat (limited to 'modules/simpletest')
-rw-r--r-- | modules/simpletest/simpletest.pages.inc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/modules/simpletest/simpletest.pages.inc b/modules/simpletest/simpletest.pages.inc index 72d01e4a9..980075e84 100644 --- a/modules/simpletest/simpletest.pages.inc +++ b/modules/simpletest/simpletest.pages.inc @@ -58,14 +58,13 @@ function simpletest_test_form($form) { } /** - * Theme the test list generated by simpletest_test_form() into a table. + * Returns HTML for a test list generated by simpletest_test_form() into a table. * * @param $variables * An associative array containing: - * - table: Form array that represent a table. + * - table: A render element representing the table. * - * @return - * HTML output. + * @ingroup themeable */ function theme_simpletest_test_table($variables) { $table = $variables['table']; @@ -366,9 +365,13 @@ function simpletest_result_form_submit($form, &$form_state) { } /** - * Add wrapper div with class based on summary status. + * Returns HTML for the summary status of a simpletest result. * - * @return HTML output. + * @param $variables + * An associative array containing: + * - form: A render element representing the form. + * + * @ingroup themeable */ function theme_simpletest_result_summary($variables) { $form = $variables['form']; |