Skip to content
Snippets Groups Projects
Commit e5b36135 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#172588 by Tresler, Freso and webernet: add missing help page for color module

parent d55dccbe
No related branches found
No related tags found
No related merge requests found
<?php
// $Id$
/**
* Implementation of hook_help
*/
function color_help($path, $arg) {
switch ($path) {
case 'admin/help#color':
$output = '<p>'. t('Color module allows a site administrator to quickly and easily change the color scheme of the entire site. In order for color module to work however, a theme must be specifically designed to use the color changing features. The default theme, Garland, (as well as its fixed width counterpart, Minnelli) was designed to take advantage of these features. With color module, you can easily change the color of links, backgrounds, text, and more depending on which color module enabled theme you are using. Color module requires your <a href="@url">file download method</a> to be set to public.', array('@url' => url('admin/settings/file-system'))). '</p>';
$output .= '<p>'. t("It is important to remember that color module saves a modified copy of the theme's style.css file in the files directory, and includes it after the theme's original style.css. This means that if you make any manual changes to your theme's style.css file, you must save your color settings again, even if they haven't changed. This causes the color module generated version of style.css in the files directory to be recreated using the new version of the original file."). '</p>';
return $output;
}
}
/**
* Implementation of hook_theme()
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment