From 921ee0f27c922dd8a7e063ab8e4553f1ab4a7a7e Mon Sep 17 00:00:00 2001 From: Mark Carver Date: Fri, 13 Dec 2013 20:47:48 -0600 Subject: [PATCH] Issue #2031639 by Mark Carver, batigolix: Update hook_help for Color module. --- core/modules/color/color.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/color/color.module b/core/modules/color/color.module index c585de8..aaf0ba6 100644 --- a/core/modules/color/color.module +++ b/core/modules/color/color.module @@ -13,12 +13,12 @@ function color_help($path, $arg) { switch ($path) { case 'admin/help#color': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Color module allows users with the Administer site configuration permission to quickly and easily change the color scheme of themes that have been built to be compatible with it. For more information, see the online handbook entry for Color module.', array('@color' => 'http://drupal.org/documentation/modules/color')) . '

'; + $output .= '

' . t('The Color module allows users with the Administer site configuration permission to change the color scheme (color of links, backgrounds, text, and other theme elements) of themes that are compatible with it. For more information, see the online documentation for the Color module.', array('!color_do' => 'https://drupal.org/documentation/modules/color')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Changing colors') . '
'; - $output .= '
' . t("Using the Color module allows you to easily change the color of links, backgrounds, text, and other theme elements. To change the color settings for a compatible theme, select the Settings link for your theme on the Themes administration page. If you don't see a color picker on that page, then your theme is not compatible with the color module. If you are sure that the theme does indeed support the color module, but the color picker does not appear, then follow these troubleshooting procedures.", array('@configure' => url('admin/appearance'), '@troubleshoot' => 'http://drupal.org/node/109457')) . '
'; - $output .= '
' . t("The Color module saves a modified copy of the theme's specified stylesheets in the files directory. This means that if you make any manual changes to your theme's stylesheet, you must save your color settings again, even if they haven't changed. This step is required because the module stylesheets (in the files directory) need to be recreated to include your changes.") . '
'; + $output .= '

' . t('To change the color settings, select the Settings link for your theme on the Appearance page. If the color picker does not appear than the theme is not compatible with the Color module.', array('!appearance' => \Drupal::url('system.themes_page'))) . '

'; + $output .= '

' . t('The Color module saves a modified copy of the theme\'s specified stylesheets in the files directory. This means that if you make any manual changes to your theme\'s stylesheet, you must save your color settings again, even if they haven\'t changed. This step is required because the module stylesheets (in the files directory) need to be recreated to include your changes.') . '

'; $output .= '
'; return $output; } -- 1.8.3.4