From d0daeeebf4db73c926a8c264f0e9e87fcb5eac72 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Mon, 21 Dec 2015 12:21:30 +0000 Subject: [PATCH] Issue #2638150 by rashid_786, dawehner: Move _system_default_theme_features() to theme.inc --- core/includes/theme.inc | 15 +++++++++++++++ core/modules/system/system.module | 15 --------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/core/includes/theme.inc b/core/includes/theme.inc index 35af8e0d56c8..ad87bf47ac4b 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -94,6 +94,21 @@ function theme_get_registry($complete = TRUE) { } } +/** + * Returns an array of default theme features. + * + * @see \Drupal\Core\Extension\ThemeHandler::$defaultFeatures + */ +function _system_default_theme_features() { + return array( + 'favicon', + 'logo', + 'node_user_picture', + 'comment_user_picture', + 'comment_user_verification', + ); +} + /** * Forces the system to rebuild the theme registry. * diff --git a/core/modules/system/system.module b/core/modules/system/system.module index ae6142f32f58..1d0785887e1f 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -1060,21 +1060,6 @@ function system_rebuild_module_data() { return $modules_cache; } -/** - * Returns an array of default theme features. - * - * @see \Drupal\Core\Extension\ThemeHandler::$defaultFeatures - */ -function _system_default_theme_features() { - return array( - 'favicon', - 'logo', - 'node_user_picture', - 'comment_user_picture', - 'comment_user_verification', - ); -} - /** * Get a list of available regions from a specified theme. * -- GitLab