summaryrefslogtreecommitdiff
path: root/modules/update/update.report.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/update/update.report.inc')
-rw-r--r--modules/update/update.report.inc20
1 files changed, 17 insertions, 3 deletions
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc
index b33cea897..6a9d60d1b 100644
--- a/modules/update/update.report.inc
+++ b/modules/update/update.report.inc
@@ -21,7 +21,11 @@ function update_status() {
}
/**
- * Theme project status report.
+ * Returns HTML for the project status report.
+ *
+ * @param $variables
+ * An associative array containing:
+ * - data: An array of data about each project's status.
*
* @ingroup themeable
*/
@@ -244,7 +248,7 @@ function theme_update_report($variables) {
}
/**
- * Generate the HTML for the label to display for a project's update status.
+ * Returns HTML for a label to display for a project's update status.
*
* @param $variables
* An associative array containing:
@@ -273,7 +277,17 @@ function theme_update_status_label($variables) {
}
/**
- * Theme the version display of a project.
+ * Returns HTML for the version display of a project.
+ *
+ * @param $variables
+ * An associative array containing:
+ * - version: An array of data about the latest released version, containing:
+ * - version: The version number.
+ * - release_link: The URL for the release notes.
+ * - date: The date of the release.
+ * - download_link: The URL for the downloadable file.
+ * - tag: The title of the project.
+ * - class: A string containing extra classes for the wrapping table.
*
* @ingroup themeable
*/