You are here

function colors_help in Colors 7

Implements hook_help().

File

./colors.module, line 77
Provides an API to match selectors with a color configuration.

Code

function colors_help($path, $arg) {
  switch ($path) {
    case 'admin/help#colors':
      return '<p>' . t('You can configure colors for your events based on taxonomy terms, node types, etc. on the <a href="@link">Colors administration page</a>.', array(
        '@link' => '/admin/config/user-interface/colors',
      )) . '</p>';
      break;
  }
}