diff --git a/core/modules/responsive_image/responsive_image.module b/core/modules/responsive_image/responsive_image.module index 5717a2a..51e9883 100644 --- a/core/modules/responsive_image/responsive_image.module +++ b/core/modules/responsive_image/responsive_image.module @@ -166,8 +166,6 @@ function theme_responsive_image_formatter($variables) { * - attributes: Associative array of attributes to be placed in the img tag. * - style_name: The name of the style to be used as a fallback image. * - responsive_image_style_id: The ID of the responsive image style. - * - * @ingroup themeable */ function template_preprocess_responsive_image(&$variables) { // Make sure that width and height are proper values diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc index 61146b4..eaa5a83 100644 --- a/core/modules/update/update.report.inc +++ b/core/modules/update/update.report.inc @@ -17,8 +17,6 @@ * @param array $variables * An associative array containing: * - data: An array of data about each project's status. - * - * @ingroup themeable */ function template_preprocess_update_report(&$variables) { $data = $variables['data']; @@ -127,8 +125,6 @@ function template_preprocess_update_report(&$variables) { * - includes_status: An array of sub-project statuses where the keys are the * shortnames of each project and the values are UPDATE_* integer constants * as defined in update.module. - * - * @ingroup themeable */ function template_preprocess_update_project_status(&$variables) { // Storing by reference because we are sorting the project values. diff --git a/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc index a9b6295..7a033ee 100644 --- a/core/modules/views/views.theme.inc +++ b/core/modules/views/views.theme.inc @@ -208,6 +208,8 @@ function template_preprocess_views_view_fields(&$variables) { * - wrapper_suffix: A string added to the end of the fields. * * @see template_preprocess_views_view_fields() + * + * @ingroup themeable */ function theme_views_view_fields($variables) { $fields = $variables['fields']; @@ -252,6 +254,8 @@ function template_preprocess_views_view_grouping(&$variables) { * Interesting bits of info: * $field->field_alias says what the raw value in $row will be. Reach it like * this: @code { $row->{$field->field_alias} @endcode + * + * @ingroup themeable */ function theme_views_view_field($variables) { return $variables['output']; diff --git a/core/modules/views_ui/views_ui.theme.inc b/core/modules/views_ui/views_ui.theme.inc index 2187076..0cbc71f 100644 --- a/core/modules/views_ui/views_ui.theme.inc +++ b/core/modules/views_ui/views_ui.theme.inc @@ -93,6 +93,8 @@ function template_preprocess_views_ui_view_info(&$variables) { /** * Theme the build group filter form. + * + * @ingroup themeable */ function theme_views_ui_build_group_filter_form($variables) { $form = $variables['form'];